• Hello,
    I noticed that when I have an active filter, I cannot open the hamburger menu on mobile view.
    If I reset the filter, the mobile menu returns available.
    Any idea to resolve this issue?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support crodriguez1991

    (@crodriguez1991)

    Hello there,

    I hope you’re doing well :D.

    Please, try to add the following code in the functions.php of your active theme:

    if( ! function_exists( 'yith_wcan_content_selector' ) ){
    function yith_wcan_content_selector( $selector ){
    $selector = '.page-content';
    return $selector;
    }
    add_filter( 'yith_wcan_content_selector', 'yith_wcan_content_selector' );
    }

    It should change the filtered content section and prevent problems with the hamburger menu.

    Please, try it and let me know.

    Have a good day.

    Thread Starter Lox87

    (@lox87)

    Hello! Thank you for the answer! I tried it with no good results unfortunately

    With a selected filter the hamburger mobile still not opens

    Plugin Support Vanesa

    (@vanesarodriguez)

    Hello there!
    I have checked your site and I could see some errors display on the console when you use the filter, it could be created by a conflict with the theme or another plugin.

    I suggest you to make a test by disabling all of the plugins except for woocommerce and Ajax Product Filter while using a default wp theme and check if the issue persists. If it does not, start enabling back the plugins one by one to be sure if any of them is creating a conlfict.

    Let us know.

    We remain at your disposal.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.