PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

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 please
If 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.

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?

Site: https://feelgoodfibers.com/

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

I just added the purchase code. I checked the setting in WooCommerce and it is correctly showing the Shop All page. please advise.

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?

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

Hello

Looks like now is clear - its incompatibility between 2 search plugins, and hera are 2 variants

  1. Replace text filter on the header to https://products-filter.com/shortcode/woof_text_filter and use it
  2. 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);