(function( $ ) { wp.customize.bind( 'ready', function() { var optPrefix = '#customize-control-adventure_resort_options-'; // Label function adventure_resort_customizer_label( id, title ) { // Site Identity if ( id === 'custom_logo' || id === 'site_icon' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-adventure_resort_options-'+ id ).before('
  • '+ title +'
  • '); } // General Setting if ( id === 'adventure_resort_scroll_hide' || id === 'adventure_resort_preloader_hide' || id === 'adventure_resort_sticky_header' || id === 'adventure_resort_products_per_row' || id === 'adventure_resort_scroll_top_position' || id === 'adventure_resort_products_per_row') { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-adventure_resort_options-'+ id ).before('
  • '+ title +'
  • '); } // Colors if ( id === 'adventure_resort_theme_color' || id === 'background_color' || id === 'background_image' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-adventure_resort_options-'+ id ).before('
  • '+ title +'
  • '); } // Header Image if ( id === 'header_image' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-adventure_resort_options-'+ id ).before('
  • '+ title +'
  • '); } // Social Icon if ( id === 'adventure_resort_facebook_icon' || id === 'adventure_resort_twitter_icon' || id === 'adventure_resort_intagram_icon'|| id === 'adventure_resort_linkedin_icon'|| id === 'adventure_resort_pintrest_icon' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-adventure_resort_options-'+ id ).before('
  • '+ title +'
  • '); } // Header if ( id === 'adventure_resort_topbar_location_text' || id === 'adventure_resort_topbar_mail_text' || id === 'adventure_resort_header_button_text' || id === 'adventure_resort_header_search_setting' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-adventure_resort_options-'+ id ).before('
  • '+ title +'
  • '); } // Slider if ( id === 'adventure_resort_slider_section_setting' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-adventure_resort_options-'+ id ).before('
  • '+ title +'
  • '); } // Activities if ( id === 'adventure_resort_activities_section_setting' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-adventure_resort_options-'+ id ).before('
  • '+ title +'
  • '); } // Footer if ( id === 'adventure_resort_footer_text_setting' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-adventure_resort_options-'+ id ).before('
  • '+ title +'
  • '); } } // Site Identity adventure_resort_customizer_label( 'custom_logo', 'Logo Setup' ); adventure_resort_customizer_label( 'site_icon', 'Favicon' ); // General Setting adventure_resort_customizer_label( 'adventure_resort_preloader_hide', 'Preloader' ); adventure_resort_customizer_label( 'adventure_resort_scroll_hide', 'Scroll To Top' ); adventure_resort_customizer_label( 'adventure_resort_scroll_top_position', 'Scroll to top Position' ); adventure_resort_customizer_label( 'adventure_resort_products_per_row', 'woocommerce Setting' ); // Colors adventure_resort_customizer_label( 'adventure_resort_theme_color', 'Theme Color' ); adventure_resort_customizer_label( 'background_color', 'Colors' ); adventure_resort_customizer_label( 'background_image', 'Image' ); //Header Image adventure_resort_customizer_label( 'header_image', 'Header Image' ); // Social Icon adventure_resort_customizer_label( 'adventure_resort_facebook_icon', 'Facebook' ); adventure_resort_customizer_label( 'adventure_resort_twitter_icon', 'Twitter' ); adventure_resort_customizer_label( 'adventure_resort_intagram_icon', 'Intagram' ); adventure_resort_customizer_label( 'adventure_resort_linkedin_icon', 'Linkedin' ); adventure_resort_customizer_label( 'adventure_resort_pintrest_icon', 'Pintrest' ); // Header adventure_resort_customizer_label( 'adventure_resort_topbar_location_text', 'Location' ); adventure_resort_customizer_label( 'adventure_resort_topbar_mail_text', 'Email Address' ); adventure_resort_customizer_label( 'adventure_resort_header_button_text', 'Header Button' ); adventure_resort_customizer_label( 'adventure_resort_header_search_setting', 'Search' ); //Slider adventure_resort_customizer_label( 'adventure_resort_slider_section_setting', 'Slider' ); //Activities adventure_resort_customizer_label( 'adventure_resort_activities_section_setting', 'Activities' ); //Footer adventure_resort_customizer_label( 'adventure_resort_footer_text_setting', 'Footer' ); }); })( jQuery );