• Resolved cheonmu

    (@cheonmu)


    Hi,

    I’ve inserted a wish list into an image of my product taking advantage of Shortcode.

    By the way, there is much decrease in the speed of the web site as the loading of A is getting overlapped when When I check from IE11. (screenshot)

    Could you show(tell) me the way to solve this problem?

    Thank you.

    • This topic was modified 5 years, 1 month ago by cheonmu.
    • This topic was modified 5 years, 1 month ago by cheonmu.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author templateinvaders

    (@templateinvaders)

    Hi @cheonmu

    Could you post more details about your issue?
    We can’t see any overlapping on your website.

    The shortcode can’t trigger multiple wc_cart_fragments events as you highlighted on the screenshot. You should check your setup to find what code triggered it.

    Thread Starter cheonmu

    (@cheonmu)

    Hi, @templateinvaders

    Thanks for answering.

    The issue was resolved by applying below code to functions.php after searching the posts written previously.

    add_filter( 'tinvwl_wc_cart_fragments_refresh', '__return_false' );
    add_filter( 'tinvwl-wc-cart-fragments', '__return_false' );

    However, when I checked it at the debug mode, the warning like “Notice: tinvwl-wc-cart-fragments is deprecated since version 1.13.0! Use tinvwl_wc_cart_fragments_enabled instead. ” has appeared, doesn’t it matter to ignore it?

    All functions of plugIn are working properly.

    Thank you.

    Plugin Author templateinvaders

    (@templateinvaders)

    Hi @cheonmu

    Just update your code to the next one to remove deprecation notice:

    add_filter( 'tinvwl_wc_cart_fragments_refresh', '__return_false' );
    add_filter( 'tinvwl_wc_cart_fragments_enabled', '__return_false' );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Compatibility issue in IE 11’ is closed to new replies.