Clear All button redirects to Home, not Shop
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page pleaseIf you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.
Quote from hello@feelgoodfibers.com on November 15, 2025, 01:42My site is using the Woodmart Theme Search function, and when you click the clear all button on the filter after searching, it redirects to the home page, not the shop page. Is there any way to change where this button redirects to?
Site: https://feelgoodfibers.com/
My site is using the Woodmart Theme Search function, and when you click the clear all button on the filter after searching, it redirects to the home page, not the shop page. Is there any way to change where this button redirects to?
Quote from Alex Dovlatov on November 17, 2025, 13:35Hello
Just checked the issue, so reason can be if you set woocommerce shop page https://share.pluginus.net/image/i20251117133443.png as home page https://share.pluginus.net/image/i20251117133344.png - set any another page there and reset button will lead to /shop page
For further support please in the private area of this ticket place actual purchase code
https://share.pluginus.net/image/i20230222134241.png
https://share.pluginus.net/image/i20230222134615.png
https://share.pluginus.net/image/i20230222134511.png
Hello
Just checked the issue, so reason can be if you set woocommerce shop page https://share.pluginus.net/image/i20251117133443.png as home page https://share.pluginus.net/image/i20251117133344.png - set any another page there and reset button will lead to /shop page
For further support please in the private area of this ticket place actual purchase code
https://share.pluginus.net/image/i20230222134241.png
https://share.pluginus.net/image/i20230222134615.png
https://share.pluginus.net/image/i20230222134511.png
Quote from hello@feelgoodfibers.com on November 17, 2025, 23:44I just added the purchase code. I checked the setting in WooCommerce and it is correctly showing the Shop All page. please advise.
I just added the purchase code. I checked the setting in WooCommerce and it is correctly showing the Shop All page. please advise.
Quote from Alex Dovlatov on November 18, 2025, 13:14Hello
I did some tests: https://feelgoodfibers.com/product-category/fabric-type/quilting-cotton/?swoof=1&product_brand=alexander-henry&really_curr_tax=76-product_cat - here if to click clear all button its redirect to https://feelgoodfibers.com/product-category/fabric-type/quilting-cotton/ - that is right when we are on category page
Here https://feelgoodfibers.com/shop/ no filter on this page, so no filtrationh here
Tell me please link by link where to go, link to click on reste button to see its redirect you on main page
Also I found link: https://feelgoodfibers.com/shop-all/ - https://c2n.me/4nnnXAT.png - this is your main page of the site - but clear all button also works fine
Can you make please video where you going, use filter and click cclear all button to see the issue?
Hello
I did some tests: https://feelgoodfibers.com/product-category/fabric-type/quilting-cotton/?swoof=1&product_brand=alexander-henry&really_curr_tax=76-product_cat - here if to click clear all button its redirect to https://feelgoodfibers.com/product-category/fabric-type/quilting-cotton/ - that is right when we are on category page
Here https://feelgoodfibers.com/shop/ no filter on this page, so no filtrationh here
Tell me please link by link where to go, link to click on reste button to see its redirect you on main page
Also I found link: https://feelgoodfibers.com/shop-all/ - https://c2n.me/4nnnXAT.png - this is your main page of the site - but clear all button also works fine
Can you make please video where you going, use filter and click cclear all button to see the issue?
Quote from hello@feelgoodfibers.com on November 21, 2025, 19:38Video link below. The issue only happens when I use the search bar at the top first.
https://drive.google.com/file/d/1OxnKCEpteSlPUI7BnkUZTVqBSxWvJF5r/view?usp=sharing
Video link below. The issue only happens when I use the search bar at the top first.
https://drive.google.com/file/d/1OxnKCEpteSlPUI7BnkUZTVqBSxWvJF5r/view?usp=sharing
Quote from Alex Dovlatov on November 24, 2025, 13:46Hello
Looks like now is clear - its incompatibility between 2 search plugins, and hera are 2 variants
- Replace text filter on the header to https://products-filter.com/shortcode/woof_text_filter and use it
- OR Add next code into file functions.php of the current wp theme
add_action('wp_footer', function () {
if (!is_shop() && !is_product_taxonomy() && !is_page('shop')) {
return;
}
?>
<script >
jQuery(document).ready(function($) {
setTimeout(function() {
$('.woof_reset_button_2').off('click');$('.woof_reset_button_2').on('click', function(e) {
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();window.location.href = 'https://feelgoodfibers.com/shop/';
return false;
});
}, 1000);
});
</script>
<?php
}, 9999);
Hello
Looks like now is clear - its incompatibility between 2 search plugins, and hera are 2 variants
- Replace text filter on the header to https://products-filter.com/shortcode/woof_text_filter and use it
- OR Add next code into file functions.php of the current wp theme
add_action('wp_footer', function () {
if (!is_shop() && !is_product_taxonomy() && !is_page('shop')) {
return;
}
?>
<script >
jQuery(document).ready(function($) {
setTimeout(function() {
$('.woof_reset_button_2').off('click');$('.woof_reset_button_2').on('click', function(e) {
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();window.location.href = 'https://feelgoodfibers.com/shop/';
return false;
});
}, 1000);
});
</script>
<?php
}, 9999);