My account

Login

Shopping Cart
Scroll to Top
jQuery(function($){ function getFilters(){ return { origin: $('#filter-origin').val(), category: $('#filter-category').val(), min_price: $('#min-price').val(), max_price: $('#max-price').val(), sort: $('#filter-sort').val(), rating: $('#filter-rating').val(), step: $('#filter-step').val() }; } function applyFilters(){ let data = getFilters(); $.ajax({ url: wc_add_to_cart_params.ajax_url, type: 'POST', data: { action: 'custom_filter_products', filters: data }, beforeSend: function(){ $('#products-container').html('Loading...'); }, success: function(response){ $('#products-container').html(response); // show reset button $('#reset-filter').show(); } }); } // Auto apply on change $('#custom-filter select, #custom-filter input').on('change keyup', function(){ applyFilters(); }); // Apply button $('#apply-filter').on('click', function(){ applyFilters(); }); // Reset $('#reset-filter').on('click', function(){ $('#custom-filter select').val(''); $('#custom-filter input').val(''); applyFilters(); $(this).hide(); }); });