• When choose a filter the plugin broke the Elementor Menu ,
    it seems its add an unwanted class to menu items

    is there any way to bypass this conflict ?

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

    (@alessio91)

    Hello there,

    I would take a look, could you share with us the url of a page where we can replicate the issue?

    Thread Starter Milad Jafari

    (@miladjfr)

    Unfortunately i have not an staging version of the site and can not make the plugin active on main site for test purpose,
    but i will send you enough details to help you find the problem .
    first the problem appear when i’m not logged in as admin to site ,

    every time i click on a filter ( label ), the plugin add an span with “sub-arrow” class to my elementor submenu item and the mobile version of menu completely got broke ,
    you can check the screenshot of code on the link below :
    https://drive.google.com/file/d/1ZM2288poagOgaxz7iBY8fnsQjMO-sTZj/view?usp=sharing


    its clear this is a javascript conflict and maybe it is related to cached files ( because its not occurred when im logged it as admin ) ,
    i have not any cache plugin active but i use cloudflare page cache

    Plugin Support crodriguez1991

    (@crodriguez1991)

    Hello there,

    I hope you’re doing well :D.

    Maybe the problem could be related to the filtered section. Without check the problem it’s not easy to us to debug and try to give you a code that can help you to get your goal. Maybe you can try adding 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' );
    }

    If you continue with the problem, I suggest you to create a staging site where you cna replicate the issue and share with us a link. In this way, we can try to understand better the problem and try to help you.

    We’re looking forward your response.

    Have a good day.

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