jQuery(document).ready(function(){ //redirect //above-header jQuery( '.focus-customizer-menu-redirect-col1,.focus-customizer-menu-redirect-col2,.focus-customizer-menu-redirect-col3' ).on( 'click', function (e){ e.preventDefault(); wp.customize.panel('nav_menus').focus(); } ); jQuery( '.focus-customizer-widget-redirect-col1,.focus-customizer-widget-redirect-col2,.focus-customizer-widget-redirect-col3,.focus-customizer-widget-redirect' ).on( 'click', function (e){ e.preventDefault(); wp.customize.panel( 'widgets' ).focus(); } ); jQuery( '.focus-customizer-social_media-redirect-col1,.focus-customizer-social_media-redirect-col2,.focus-customizer-social_media-redirect-col3' ).on( 'click', function (e){ e.preventDefault(); wp.customize.section( 'big-store-social-icon' ).focus(); } ); /* === Checkbox Multiple Control === */ jQuery( '.customize-control-checkbox-multiple input[type="checkbox"]' ).on( 'change', function() { // alert(''); checkbox_values = jQuery( this ).parents( '.customize-control' ).find( 'input[type="checkbox"]:checked' ).map( function() { return this.value; } ).get().join( ',' ); jQuery( this ).parents( '.customize-control' ).find( 'input[type="hidden"]' ).val( checkbox_values ).trigger( 'change' ); } ); // section sorting jQuery( "#sortable" ).sortable({ placeholder: "ui-sortable-placeholder", cursor: 'move', opacity: 0.65, stop: function ( event, ui){ var data = jQuery(this).sortable('toArray'); // console.log(data); // This should print array of IDs, but returns empty string/array jQuery( this ).parents( '.customize-control').find( 'input[type="hidden"]' ).val( data ).trigger( 'change' ); } }); //hide show option wp.customize('big_store_top_slide_layout', function( value ) { var filter_type = value.bind( function( to ) { if(to=='slide-layout-1'){ jQuery( '.customizer-repeater-logo-image-control' ).css('display','block' ); }else{ jQuery( '.customizer-repeater-logo-image-control' ).css('display','none' ); } } ); if(filter_type()=='slide-layout-1'){ jQuery( '.customizer-repeater-logo-image-control' ).css('display','block' ); } else{ jQuery( '.customizer-repeater-logo-image-control' ).css('display','none' ); } } ); });