Joe Wooster

Results 10 comments of Joe Wooster

> Hi @SuperHanss, > > Thank you for taking the time to report this bug, we really appreciate your help. We are unable to reproduce the issue on our end...

Is anyone able to reproduce this with the latest Chrome? It's occuring on demo stores too - https://veganfoodshop.thunder-stores.com/

UPDATE: I've managed to get this working. It seems with Chrome a delay is needed before 'wc_fragment_refresh' can be triggered: ``` jQuery(window).on('pageshow', function(e) { if (e.originalEvent.persisted) { setTimeout(function() { jQuery('.widget_shopping_cart_content').empty();...

Not sure why this was closed with can't reproduce? With the latest Chrome the issue is present in demo stores too using mobile and desktop. https://lumiere.thunder-stores.com Setting a timeout as...

@barryhughes I appreciate you testing. Please try the following: - Open [https://lumiere.thunder-stores.com/shop/](https://lumiere.thunder-stores.com/shop/) - Add a few different items to cart - Navigate to the main cart page - Remove an...

@andrestr93 the script I'm using: ``` jQuery(function($) { var isChromium = window.chrome; if (isChromium) { $(window).on('pageshow', function(e) { if (e.originalEvent.persisted) { setTimeout(function() { $(document.body).trigger('wc_fragment_refresh'); }, 100); } }); } });...

Should be working on both Chrome for Mac/Windows (in fact all chromium based browsers) and Chrome for Android. Perhaps the script isn't being loaded? Have you cleared the cache?

+1 on this. I'm running a WooCommerce site which uses tabs for the shop page, this bug prevents the products within the tabs from displaying therefore customers are unable to...

@rami-elementor my understanding of the required code for compatibility is very limited but is this something that users could opt into? Perhaps an option in Elementor>Tools to include compatibility with...