/** * Scripts within the customizer controls window. * */ jQuery( document ).ready(function($) { //Chosen JS $(".blogmax-chosen-select").chosen({ width: "100%" }); //Switch Control $('body').on('click', '.onoffswitch', function(){ var $this = $(this); if($this.hasClass('switch-on')){ $(this).removeClass('switch-on'); $this.next('input').val( false ).trigger('change') }else{ $(this).addClass('switch-on'); $this.next('input').val( true ).trigger('change') } }); $( document ).on( 'click', '.customize_multi_add_field', blogmax_customize_multi_add_field ) .on( 'change', '.customize_multi_single_field', blogmax_customize_multi_single_field ) .on( 'click', '.customize_multi_remove_field', blogmax_customize_multi_remove_field ) /********* Multi Input Custom control ***********/ $( '.customize_multi_input' ).each(function() { var $this = $( this ); var multi_saved_value = $this.find( '.customize_multi_value_field' ).val(); if (multi_saved_value.length > 0) { var multi_saved_values = multi_saved_value.split( "|" ); $this.find( '.customize_multi_fields' ).empty(); var $control = $this.parents( '.customize_multi_input' ); $.each(multi_saved_values, function( index, value ) { $this.find( '.customize_multi_fields' ).append( '
' ); }); } }); function blogmax_customize_multi_add_field(e) { var $this = $( e.currentTarget ); e.preventDefault(); var $control = $this.parents( '.customize_multi_input' ); $control.find( '.customize_multi_fields' ).append( '
' ); blogmax_customize_multi_write( $control ); } function blogmax_customize_multi_single_field() { var $control = $( this ).parents( '.customize_multi_input' ); blogmax_customize_multi_write( $control ); } function blogmax_customize_multi_remove_field(e) { e.preventDefault(); var $this = $( this ); var $control = $this.parents( '.customize_multi_input' ); $this.parent().remove(); blogmax_customize_multi_write( $control ); } function blogmax_customize_multi_write( $element) { var customize_multi_val = ''; $element.find( '.customize_multi_fields .customize_multi_single_field' ).each(function() { customize_multi_val += $( this ).val() + '|'; }); $element.find( '.customize_multi_value_field' ).val( customize_multi_val.slice( 0, -1 ) ).change(); } }); jQuery(document).ready(function($) { // Sortable sections jQuery( 'ul.blogmax-sortable-list' ).sortable({ handle: '.blogmax-drag-handle', axis: 'y', update: function( e, ui ){ jQuery('input.blogmax-sortable-input').trigger( 'change' ); } }); /* On changing the value. */ jQuery( "body" ).on( 'change', 'input.blogmax-sortable-input', function() { /* Get the value, and convert to string. */ this_checkboxes_values = jQuery( this ).parents( 'ul.blogmax-sortable-list' ).find( 'input.blogmax-sortable-input' ).map( function() { return this.value; }).get().join( ',' ); /* Add the value to hidden input. */ jQuery( this ).parents( 'ul.blogmax-sortable-list' ).find( 'input.blogmax-sortable-value' ).val( this_checkboxes_values ).trigger( 'change' ); }); }); /** * Add a listener to update other controls to new values/defaults. */ ( function( api ) { const blogmax_section_lists = [ 'gallery_slider_section', 'latest_posts_section', 'about_us_section', 'featured_posts_section', 'promotion_section', 'highlighted_posts_section', 'three_column_posts_section', 'trending_posts_section', 'advertisement_section', 'most_viewed_posts_section', 'popular_posts_section', 'sports_section', 'two_column_posts_section', 'recent_posts_section', ]; blogmax_section_lists.forEach( blogmax_homepage_scroll ); function blogmax_homepage_scroll(item, index) { // Detect when the front page sections section is expanded (or closed) so we can adjust the preview accordingly. wp.customize.section( 'blogmax_'+item, function( section ) { section.expanded.bind( function( isExpanding ) { // Value of isExpanding will = true if you're entering the section, false if you're leaving it. wp.customize.previewer.send( item, { expanded: isExpanding }); } ); } ); } // Only show the color hue control when there's a custom color scheme. wp.customize( 'blogmax_theme_options[colorscheme]', function( setting ) { wp.customize.control( 'blogmax_theme_options[colorscheme_hue]', function( control ) { var visibility = function() { if ( 'custom' === setting.get() ) { control.container.slideDown( 180 ); } else { control.container.slideUp( 180 ); } }; visibility(); setting.bind( visibility ); }); }); wp.customize( 'blogmax_theme_options[reset_options]', function( setting ) { setting.bind( function( value ) { var code = 'needs_refresh'; if ( value ) { setting.notifications.add( code, new wp.customize.Notification( code, { type: 'info', message: blogmax_reset_data.reset_message } ) ); } else { setting.notifications.remove( code ); } } ); } ); // Deep linking for menus wp.customize.bind('ready', function() { jQuery('a.topbar-menu-trigger').click(function(e) { e.preventDefault(); wp.customize.section( 'menu_locations' ).focus() }); }); } )( wp.customize );