/* ** Scripts within the customizer controls window. */ (function( $ ) { wp.customize.bind( 'ready', function() { /* ** Reusable Functions */ var optPrefix = '#customize-control-barista_coffee_shop_options-'; // Label function barista_coffee_shop_customizer_label( id, title ) { // Colors if ( id === 'barista_coffee_shop_theme_color' || id === 'background_color' || id === 'background_image' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-barista_coffee_shop_options-'+ id ).before('
  • '+ title +'
  • '); } // Site Identity if ( id === 'custom_logo' || id === 'site_icon' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-barista_coffee_shop_options-'+ id ).before('
  • '+ title +'
  • '); } // Top Header if ( id === 'barista_coffee_shop_phone_text' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-barista_coffee_shop_options-'+ id ).before('
  • '+ title +'
  • '); } // General Setting if ( id === 'barista_coffee_shop_preloader_hide' || id === 'barista_coffee_shop_sticky_header' || id === 'barista_coffee_shop_scroll_hide' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-barista_coffee_shop_options-'+ id ).before('
  • '+ title +'
  • '); } // Social Icon if ( id === 'barista_coffee_shop_facebook_url' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-barista_coffee_shop_options-'+ id ).before('
  • '+ title +'
  • '); } // Slider if ( id === 'barista_coffee_shop_top_slider_page1' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-barista_coffee_shop_options-'+ id ).before('
  • '+ title +'
  • '); } // Header Image if ( id === 'header_image' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-barista_coffee_shop_options-'+ id ).before('
  • '+ title +'
  • '); } //Featured Product if ( id === 'barista_coffee_shop_new_product_title' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-barista_coffee_shop_options-'+ id ).before('
  • '+ title +'
  • '); } // Footer if ( id === 'barista_coffee_shop_footer_text_setting' ) { $( '#customize-control-'+ id ).before('
  • '+ title +'
  • '); } else { $( '#customize-control-barista_coffee_shop_options-'+ id ).before('
  • '+ title +'
  • '); } } /* ** Tabs */ // Colors barista_coffee_shop_customizer_label( 'barista_coffee_shop_theme_color', 'Theme Color' ); barista_coffee_shop_customizer_label( 'background_color', 'Colors' ); barista_coffee_shop_customizer_label( 'background_image', 'Image' ); // Site Identity barista_coffee_shop_customizer_label( 'custom_logo', 'Logo Setup' ); barista_coffee_shop_customizer_label( 'site_icon', 'Favicon' ); // Top Header barista_coffee_shop_customizer_label( 'barista_coffee_shop_phone_text', 'Phone' ); // General Setting barista_coffee_shop_customizer_label( 'barista_coffee_shop_preloader_hide', 'Preloader' ); barista_coffee_shop_customizer_label( 'barista_coffee_shop_sticky_header', 'Sticky Header' ); barista_coffee_shop_customizer_label( 'barista_coffee_shop_scroll_hide', 'Scroll To Top' ); // Social Icon barista_coffee_shop_customizer_label( 'barista_coffee_shop_facebook_url', 'Social Links' ); //Slider barista_coffee_shop_customizer_label( 'barista_coffee_shop_top_slider_page1', 'Slider' ); //Header Image barista_coffee_shop_customizer_label( 'header_image', 'Header Image' ); //Featured Product barista_coffee_shop_customizer_label( 'barista_coffee_shop_new_product_title', 'Featured Product' ); //Footer barista_coffee_shop_customizer_label( 'barista_coffee_shop_footer_text_setting', 'Footer' ); }); // wp.customize ready })( jQuery );