I used the snippet above:
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();
});
But now, on mobile, even though I have the option selected for one click open on mobile, I still have to click the image or title twice before it opens Quickview.
How can I make it open with one click on mobile devices?
I want the full quickview to open on one click, but instead it opens the small window on the first click, and the full quickview on the second click. I want to bypass the small window.