The Advanced tab provides developer-friendly options for customizing your layouts with CSS and JavaScript, as well as handling plugin data when uninstalling.

- Custom CSS: Add your own CSS rules to style Domain For Sale layouts without modifying theme files. Styles will override default plugin styles.
- Example:
.dfs-offer-button {
background-color: #0073aa;
color: #fff;
border-radius: 5px;
}
- Custom JavaScript: Insert custom scripts such as analytics, tracking codes, or functionality tweaks.
- Example:
document.addEventListener('DOMContentLoaded', function() {
console.log("Domain For Sale offer form loaded.");
});
⚠️ Be careful — incorrect code here could break front-end layouts. Always test on staging first.
- Clean-up Data on Deletion: When enabled, all plugin data (layouts, settings, and configurations) will be permanently removed when you delete the plugin from WordPress.
- Leave unchecked if you plan to reinstall the plugin later and want to keep your existing settings.
- Check this box only if you want a complete reset of all plugin data.
✅ The Advanced section is optional for most users but gives developers flexibility to extend or customize the plugin safely.