• Hi all,

    The issue appear in Chrome only. Without plugin the page opens anchored section, but when the plugin activated the page is constantly is being re-loaded (the site runs on Enfold Theme). Any ideas

    We were looking into some premium features, but not sure if it will work.

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

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

    (@alessio91)

    Hi there,

    I did a test on my local installation and I couldn’t replicate the issue.

    Did you check if the problem persists using the plugin with a WordPress default theme and WooCommerce only?

    Let us know.

    Thread Starter lucamila

    (@lucamila)

    The problem is that the functionality of the Theme is being broken by plugin.

    Plugin Support Pablo Pérez

    (@pperez001)

    Hi there,

    In order to prevent our plugin to only target your products and filters, please use the following code in the functions.php of your current theme:

    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' ); 
    
    }

    This will make our plugin target the element with that ID which only contains the product and our filters, preventing breaking other elements JS.

    I hope this can help you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Plugin reloads page in Chrome’ is closed to new replies.