Ubuntu

­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ jQuery(document).ready(function($){ var ajaxurl = php_info.admin_url; var nonce = php_info.nonce; // multiple select with AJAX search $('.product-select-multiple').select2({ ajax: { url: ajaxurl, // AJAX URL is predefined in WordPress admin dataType: 'json', type: 'POST', delay: 250, // delay in ms while typing when to perform a AJAX search data: function (params) { return { q: params.term, // search query action: 'afadvgetproducts', // AJAX action for admin-ajax.php nonce: nonce }; }, processResults: function( data ) { var options = []; if ( data ) { // data is the array of arrays, and each of them contains ID and the Label of the option $.each( data, function( index, text ) { // do not forget that "index" is just auto incremented value options.push( { id: text[0], text: text[1] } ); }); } return { results: options.reverse() }; }, cache: true }, minimumInputLength: 3, // the minimum of symbols to input before perform a search placeholder: "Search for products" }); }); jQuery(document).ready(function($){ $('.category-select-multiple').select2(); $('#afadv_apply_on_all_products').change(function () { if (this.checked) { $('.hide_pro_cat').fadeOut('fast'); } else { $('.hide_pro_cat').fadeIn('fast'); } }); if ($("#afadv_apply_on_all_products").is(':checked')) { $(".hide_pro_cat").hide(); // checked } else { $(".hide_pro_cat").show(); } $('select.afadv_quantity_type').change( function(){ var value = $(this).val(); $('tr.minimum-quantity').hide(); $('tr.maximum-quantity').hide(); $('tr.step-quantity').hide(); $('tr.custom-quantity').hide(); $('tr.fixed-quantity').hide(); $('tr.decimal-quantity').hide(); $('input#afadv_display_dropdown').prop('disabled', false ); switch( value ) { case 'default': $('tr.minimum-quantity').show(); $('tr.maximum-quantity').show(); break; case 'fixed': $('tr.fixed-quantity').show(); $('input#afadv_display_dropdown').prop('checked', false ); $('input#afadv_display_dropdown').prop('disabled', true ); break; case 'step': $('tr.minimum-quantity').show(); $('tr.maximum-quantity').show(); $('tr.step-quantity').show(); break; case 'custom': $('tr.custom-quantity').show(); $('input#afadv_display_dropdown').prop('checked', true ); $('input#afadv_display_dropdown').prop('disabled', true ); break; case 'decimal': $('tr.minimum-quantity').show(); $('tr.maximum-quantity').show(); $('tr.decimal-quantity').show(); break; } }); var value = $('select.afadv_quantity_type').val(); $('tr.minimum-quantity').hide(); $('tr.maximum-quantity').hide(); $('tr.step-quantity').hide(); $('tr.custom-quantity').hide(); $('tr.fixed-quantity').hide(); $('tr.decimal-quantity').hide(); $('input#afadv_display_dropdown').prop('disabled', false ); switch( value ) { case 'default': $('tr.minimum-quantity').show(); $('tr.maximum-quantity').show(); break; case 'fixed': $('tr.fixed-quantity').show(); $('input#afadv_display_dropdown').prop('checked', false ); $('input#afadv_display_dropdown').prop('disabled', true ); break; case 'step': $('tr.minimum-quantity').show(); $('tr.maximum-quantity').show(); $('tr.step-quantity').show(); break; case 'custom': $('tr.custom-quantity').show(); $('input#afadv_display_dropdown').prop('checked', true ); $('input#afadv_display_dropdown').prop('disabled', true ); break; } }); jQuery(document).ready(function($){ $('#advance_quantity_data_tab select#afadv_quantity_type').change( function(){ var value = $(this).val(); $('p._afadv_min_qnt_tab_fld_field').hide(); $('p._afadv_max_qnt_tab_fld_field').hide(); $('p._afadv_steps_qnt_tab_fld_field').hide(); $('p._afadv_fixed_qnt_tab_fld_field').hide(); $('p.afadv_decimal_step_field').hide(); $('p.afadv_custom_quantity_field').hide(); $('input#_afadv_adv_qnt_display_dropdown').prop('disabled', false ); switch( value ) { case 'default': $('p._afadv_min_qnt_tab_fld_field').show(); $('p._afadv_max_qnt_tab_fld_field').show(); break; case 'fixed': $('p._afadv_fixed_qnt_tab_fld_field').show(); $('input#_afadv_adv_qnt_display_dropdown').prop('checked', false ); $('input#_afadv_adv_qnt_display_dropdown').prop('disabled', true ); break; case 'step': $('p._afadv_min_qnt_tab_fld_field').show(); $('p._afadv_max_qnt_tab_fld_field').show(); $('p._afadv_steps_qnt_tab_fld_field').show(); break; case 'custom': $('p.afadv_custom_quantity_field').show(); $('input#_afadv_adv_qnt_display_dropdown').prop('checked', true ); $('input#_afadv_adv_qnt_display_dropdown').prop('disabled', true ); break; } }); var value = $('#advance_quantity_data_tab select#afadv_quantity_type').val(); $('p._afadv_min_qnt_tab_fld_field').hide(); $('p._afadv_max_qnt_tab_fld_field').hide(); $('p._afadv_steps_qnt_tab_fld_field').hide(); $('p._afadv_fixed_qnt_tab_fld_field').hide(); $('p.afadv_decimal_step_field').hide(); $('p.afadv_custom_quantity_field').hide(); $('input#_afadv_adv_qnt_display_dropdown').prop('disabled', false ); switch( value ) { case 'default': $('p._afadv_min_qnt_tab_fld_field').show(); $('p._afadv_max_qnt_tab_fld_field').show(); break; case 'fixed': $('p._afadv_fixed_qnt_tab_fld_field').show(); $('input#_afadv_adv_qnt_display_dropdown').prop('checked', false ); $('input#_afadv_adv_qnt_display_dropdown').prop('disabled', true ); break; case 'step': $('p._afadv_min_qnt_tab_fld_field').show(); $('p._afadv_max_qnt_tab_fld_field').show(); $('p._afadv_steps_qnt_tab_fld_field').show(); break; case 'custom': $('p.afadv_custom_quantity_field').show(); $('input#_afadv_adv_qnt_display_dropdown').prop('checked', true ); $('input#_afadv_adv_qnt_display_dropdown').prop('disabled', true ); break; } jQuery(document).ajaxComplete(function(){ $('select.afadv_var_quantity_type').each( function(){ var value = $(this).val(); var variation_id = $(this).closest('.woocommerce_variation').find('input.variable_post_id').val(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_min_qnt_tab_fld').hide(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_max_qnt_tab_fld').hide(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_step_qnt_tab_fld').hide(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_fix_qnt_tab_fld').hide(); $(this).closest('div.afadv_container').find('p.afadv_var_decimal_step').hide(); $(this).closest('div.afadv_container').find('p.afadv_var_custom_quantity').hide(); $(this).closest('div.afadv_container').find('p.afadv_var_custom_quantity').hide(); $('input[name="_afadv_var_pro_display_dropdown[' + variation_id + ']"]').prop('disabled', false ); switch( value ) { case 'default': $(this).closest('div.afadv_container').find('p._afadv_var_pro_min_qnt_tab_fld').show(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_max_qnt_tab_fld').show(); break; case 'fixed': $(this).closest('div.afadv_container').find('p._afadv_var_pro_fix_qnt_tab_fld').show(); $('input[name="_afadv_var_pro_display_dropdown[' + variation_id + ']"]').prop('checked', false); $('input[name="_afadv_var_pro_display_dropdown[' + variation_id + ']"]').prop('disabled', true); break; case 'step': $(this).closest('div.afadv_container').find('p._afadv_var_pro_min_qnt_tab_fld').show(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_max_qnt_tab_fld').show(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_step_qnt_tab_fld').show(); break; case 'custom': $(this).closest('div.afadv_container').find('p.afadv_var_custom_quantity').show(); $('input[name="_afadv_var_pro_display_dropdown[' + variation_id + ']"]').prop('checked', true); $('input[name="_afadv_var_pro_display_dropdown[' + variation_id + ']"]').prop('disabled', true); break; } }); $('select.afadv_var_quantity_type').change( function(){ var value = $(this).val(); var variation_id = $(this).closest('.woocommerce_variation').find('input.variable_post_id').val(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_min_qnt_tab_fld').hide(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_max_qnt_tab_fld').hide(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_step_qnt_tab_fld').hide(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_fix_qnt_tab_fld').hide(); $(this).closest('div.afadv_container').find('p.afadv_var_decimal_step').hide(); $(this).closest('div.afadv_container').find('p.afadv_var_custom_quantity').hide(); $('input[name="_afadv_var_pro_display_dropdown[' + variation_id + ']"]').prop('disabled', false); switch( value ) { case 'default': $(this).closest('div.afadv_container').find('p._afadv_var_pro_min_qnt_tab_fld').show(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_max_qnt_tab_fld').show(); break; case 'fixed': $(this).closest('div.afadv_container').find('p._afadv_var_pro_fix_qnt_tab_fld').show(); $('input[name="_afadv_var_pro_display_dropdown[' + variation_id + ']"]').prop('checked', false); $('input[name="_afadv_var_pro_display_dropdown[' + variation_id + ']"]').prop('disabled', true); break; case 'step': $(this).closest('div.afadv_container').find('p._afadv_var_pro_min_qnt_tab_fld').show(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_max_qnt_tab_fld').show(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_step_qnt_tab_fld').show(); break; case 'custom': $(this).closest('div.afadv_container').find('p.afadv_var_custom_quantity').show(); $('input[name="_afadv_var_pro_display_dropdown[' + variation_id + ']"]').prop('checked', true); $('input[name="_afadv_var_pro_display_dropdown[' + variation_id + ']"]').prop('disabled', true); break; case 'decimal': $(this).closest('div.afadv_container').find('p._afadv_var_pro_min_qnt_tab_fld').show(); $(this).closest('div.afadv_container').find('p._afadv_var_pro_max_qnt_tab_fld').show(); $(this).closest('div.afadv_container').find('p.afadv_var_decimal_step').show(); break; } }); }); });