(function($) { function resetColorsToDefault() { // Define default values for your color settings const defaultColors = { 'background_color': '#ffffff', 'adventure_trekking_camp_primary_color': '#ffa700', 'adventure_trekking_camp_heading_color': '#222222', 'adventure_trekking_camp_text_color': '#748494', 'adventure_trekking_camp_primary_fade': '#fff6e7', 'adventure_trekking_camp_footer_bg': '#222222', 'adventure_trekking_camp_post_bg': '#ffffff', }; // Iterate over each setting and set it to its default value for (let settingId in defaultColors) { wp.customize(settingId).set(defaultColors[settingId]); } // Optionally refresh the preview wp.customize.previewer.refresh(); } // Attach reset function to global scope window.resetColorsToDefault = resetColorsToDefault; $(document).ready(function() { $('.color-reset-btn').val('RESET'); // This adds the 'RESET' text inside the button }); })(jQuery);