• There are two problems:

    1. Reset filters button: if you filter products, Reset button appears only after page refresh

    2. When you uncheck checked parameters, the filter doesn’t clean, still shows only before filtered products.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Pablo Pérez

    (@pperez001)

    Hi there,

    Thank you for opening this topic.

    I checked your page and we would like to optimize the plugin, which should help with the current problems.

    Please add the following code in the functions.php. Our plugin looks for a content with and specific ID ( which is set by default in WooCommerce ) however, yours doesn’t have it, due to your theme or page builders. This code will set a new selector that your site has:

    if( ! function_exists( 'yith_wcan_content_selector' ) ){

    function yith_wcan_content_selector( $selector ){

    $selector = '#main';

    return $selector;

    }

    add_filter( 'yith_wcan_content_selector', 'yith_wcan_content_selector',99 );

    }

    Let us know if any problem persists.

    Thread Starter balticweb

    (@balticweb)

    Thank you, it seems ok now.

    Plugin Support Vanesa

    (@vanesarodriguez)

    Hello there!

    I am glad my colleague could help you! 😀

    We remain at your disposal for any other doubts or issues.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘2 filter bugs: reset button & unchecking filters’ is closed to new replies.