Home › Forums › WoodMart support forum › On click open quickview On click open quickview This topic has 1 reply, 2 voices, and was last updated 7 years, 1 month ago by Artem Temos. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts September 11, 2018 at 4:56 am #76514 komachiyxParticipant Hi, I would like to implement the same function: on click open quickview. Instead of clicking the magnifying glass to trigger quickview, what should be modify to show quickview when clicking the product image. How can I change or add the codes? Thank you September 11, 2018 at 6:24 am #76537 Artem TemosKeymaster Hi, Try to add the following code snippet to the Custom JS on document ready area in Theme Settings to do this jQuery('.product-grid-item .product-image-link, .product-grid-item .hover-img > a').on('click', function (e) { e.preventDefault(); jQuery(this).parents('.product-grid-item').find('.open-quick-view').trigger('click'); }); Regards Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to create new topics. Login / Register