• Resolved danielsps

    (@danielsps)


    Hello,

    My website uses the elementor plugin and the YITH WooCommerce Ajax Product Filter plugin. The header navigation is created by elementor – screenshot

    When I try to filter products using the ajax product filter plugin the submenu indicator duplicates screenshot

    Any suggestion on how to fix the problem? Or at least suggestions on what might cause it?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Iván Sosa

    (@ivansosa)

    Hi there,

    hope you are doing well! ??

    Please, try to add this custom code in the functions.php of your theme:

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

    Let us know if that did the trick.

    Have a nice day!

    Thread Starter danielsps

    (@danielsps)

    Yes, this filter works!
    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Elementor submenu indicator dubliaction’ is closed to new replies.