Title ×
jQuery(document).ready(function($){ // --- Filter Click Handler --- $(document).on('click', '.themify-filter a, .themify-filter input', function(e){ e.preventDefault(); // Get the filter URL var link = $(this).attr('href') || $(this).closest('form').attr('action'); if(!link) return; // Reload the product grid $('.products.elementor-grid').load(link + ' .products.elementor-grid'); }); // --- Pagination Click Handler --- $(document).on('click', '.products.elementor-grid .woocommerce-pagination a', function(e){ e.preventDefault(); var link = $(this).attr('href'); if(!link) return; // Reload products with pagination $('.products.elementor-grid').load(link + ' .products.elementor-grid'); }); });