jQuery(function($){
$('.woolentor-filter-wrap input[type="checkbox"]').on('change', function(){
if($(this).is(':checked')) {
// Uncheck other checkboxes in same filter area
$('.woolentor-filter-wrap input[type="checkbox"]').not(this).prop('checked', false);
}
// Auto-submit filter form
$(this).closest('form').trigger('submit');
});
});
Reviews
There are no reviews yet.