• We have the general options enabled for the Reset Button. The Reset button does not show. We’ve tried both the Before Filter and After Filter options. This happens on all browsers.

    Any thoughts on how to resolve?

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

Viewing 1 replies (of 1 total)
  • Plugin Support Facundo Arano

    (@aranofacundo)

    Hi there,

    I hope you’re doing well.

    I checked your site, and it seems only the products are updated when the filter is applied. So, to fix the issue you mentioned, please try adding the following PHP code in the functions.php file of your current theme:

    if( ! function_exists( 'yith_wcan_content_selector' ) ){
        function yith_wcan_content_selector( $selector ){
            $selector = '.wf-container-main';
            return $selector;
        }
        add_filter( 'yith_wcan_content_selector', 'yith_wcan_content_selector' );
    } 

    Let us know if this helped you.

Viewing 1 replies (of 1 total)
  • The topic ‘Filter Reset Not Showing’ is closed to new replies.