Home › Forums › WoodMart support forum › Bug in product view and preview for variable products with different quantities › Reply To: Bug in product view and preview for variable products with different quantities
October 18, 2024 at 4:54 pm
#606139

Luke Nielsen
Keymaster
Hello,
After reviewing this issue on the product loop, we can see that you are using “Quick shop” -> On variation click, which contains the functionality of the variation form from the single product page. In this case, unfortunately, third-party plugin functionality cannot work correctly. However, we can fix this using the following custom code:
.product-grid-item:not(.wd-variation-active) .wc-gzd-additional-info {
display: none;
}
Custom JS > On document ready
(function($) {
$('.product-grid-item .wc-gzd-additional-info-loop').removeClass('wc-gzd-additional-info-loop')
})(jQuery);
Kind Regards
-
This reply was modified 4 months, 2 weeks ago by
Luke Nielsen.