jQuery(document).ready(function($) { $('.switch_options').each(function() { //This object var obj = $(this); var enb = obj.children('.switch_enable'); //cache first element, this is equal to ON var dsb = obj.children('.switch_disable'); //cache first element, this is equal to OFF var input = obj.children('input'); //cache the element where we must set the value var input_val = obj.children('input').val(); //cache the element where we must set the value /* Check selected */ if (0 == input_val) { dsb.addClass('selected'); } else if (1 == input_val) { enb.addClass('selected'); } //Action on user's click(ON) enb.on('click', function() { $(dsb).removeClass('selected'); //remove "selected" from other elements in this object class(OFF) $(this).addClass('selected'); //add "selected" to the element which was just clicked in this object class(ON) $(input).val(1).change(); //Finally change the value to 1 }); //Action on user's click(OFF) dsb.on('click', function() { $(enb).removeClass('selected'); //remove "selected" from other elements in this object class(ON) $(this).addClass('selected'); //add "selected" to the element which was just clicked in this object class(OFF) $(input).val(0).change(); // //Finally change the value to 0 }); }); //FontAwesome Icon Control JS $('body').on('click', '.total-icon-list li', function(){ var icon_class = $(this).find('i').attr('class'); $(this).addClass('icon-active').siblings().removeClass('icon-active'); $(this).parent('.total-icon-list').prev('.total-selected-icon').children('i').attr('class','').addClass(icon_class); $(this).parent('.total-icon-list').next('input').val(icon_class).trigger('change'); }); $('body').on('click', '.total-selected-icon', function(){ $(this).next().slideToggle(); }); // Gallery Control $('.upload_gallery_button').click(function(event){ var current_gallery = $( this ).closest( 'label' ); if ( event.currentTarget.id === 'clear-gallery' ) { //remove value from input current_gallery.find( '.gallery_values' ).val( '' ).trigger( 'change' ); //remove preview images current_gallery.find( '.gallery-screenshot' ).html( '' ); return; } // Make sure the media gallery API exists if ( typeof wp === 'undefined' || !wp.media || !wp.media.gallery ) { return; } event.preventDefault(); // Activate the media editor var val = current_gallery.find( '.gallery_values' ).val(); var final; if ( !val ) { final = '[gallery ids="0"]'; } else { final = '[gallery ids="' + val + '"]'; } var frame = wp.media.gallery.edit( final ); frame.state( 'gallery-edit' ).on( 'update', function( selection ) { //clear screenshot div so we can append new selected images current_gallery.find( '.gallery-screenshot' ).html( '' ); var element, preview_html = '', preview_img; var ids = selection.models.map( function( e ) { element = e.toJSON(); preview_img = typeof element.sizes.thumbnail !== 'undefined' ? element.sizes.thumbnail.url : element.url; preview_html = "
"; current_gallery.find( '.gallery-screenshot' ).append( preview_html ); return e.id; } ); current_gallery.find( '.gallery_values' ).val( ids.join( ',' ) ).trigger( 'change' ); } ); return false; }); });//document.ready close