Home › Forums › WoodMart support forum › Quick View › Reply To: Quick View
June 17, 2023 at 7:15 pm
#475663
phumraphee
Participant
now I can fix it with this code:
jQuery(document).ready(function() {
jQuery(document).on('click', '.product-image-link, .product-element-bottom', function(e) {
e.preventDefault();
jQuery(this).closest('.product-grid-item').find('.open-quick-view').click();
});
jQuery(document).on('click', '.open-quick-view', function(e) {
e.preventDefault();
});
});
but when i click on the Quick View contents it suddenly close, Can you help me with this problem ?