Comments Lĩnh started the conversationAugust 28, 2024 at 7:45amCurrently, the cart is shaking every time the page is reloaded, even when nothing is in it. I want it only to shake when has something inside.My website is refold.laPleased to have your response in Vietnamese ( or English) 1,222Dustin repliedAugust 28, 2024 at 9:12amHi Lĩnh,Please add the custom code below. (How to add custom code? ↗): add_action( 'wp_footer', function () { ?> <style> body.woofc-ready .woofc-count.woofc-count-shake { animation: none !important; } </style> <script type="text/javascript"> (function($) { $(function() { // ready $('body').addClass('woofc-ready'); }); $(document.body).on('added_to_cart', function() { $('body').removeClass('woofc-ready'); }); })(jQuery); </script> <?php }, 99 );Best regards,Dustin1 LikeLĩnh repliedAugust 29, 2024 at 8:09amThe code did not work at all, and the cart stopped shaking on both case (empty or not) 1,222Dustin repliedAugust 29, 2024 at 8:46amIf you want to stop shaking for the empty cart only, please UPDATE the snippet: add_action( 'wp_footer', function () { ?> <style> body.woofc-ready .woofc-count.woofc-count-0.woofc-count-shake { animation: none !important; } </style> <script type="text/javascript"> (function($) { $(function() { // ready $('body').addClass('woofc-ready'); }); $(document.body).on('added_to_cart', function() { $('body').removeClass('woofc-ready'); }); })(jQuery); </script> <?php }, 99 );We provide premium support exclusively for users who have purchased the premium plugin. If you need more help, please provide your license key or email so I can verify your purchase.Best regards,Dustin Sign in to reply ...
Currently, the cart is shaking every time the page is reloaded, even when nothing is in it.
I want it only to shake when has something inside.
My website is refold.la
Pleased to have your response in Vietnamese ( or English)
Hi Lĩnh,
Please add the custom code below. (How to add custom code? ↗):
Best regards,
Dustin
The code did not work at all, and the cart stopped shaking on both case (empty or not)
If you want to stop shaking for the empty cart only, please UPDATE the snippet:
We provide premium support exclusively for users who have purchased the premium plugin. If you need more help, please provide your license key or email so I can verify your purchase.
Best regards,
Dustin