Home › Forums › WoodMart support forum › QuickView when click on product grid image and title › Reply To: QuickView when click on product grid image and title
May 29, 2020 at 6:17 am
#198830
Artem Temos
Keymaster
Hello,
Try to use the following code snippet instead of yours
jQuery('body').on('click', '.product-image-link, .product-element-bottom, .product-title', function(e) {
e.preventDefault();
jQuery(this).parents('.product-grid-item').find('.open-quick-view').click();
});
Regards