Home › Forums › WoodMart support forum › QuickView when click on product grid image and title
QuickView when click on product grid image and title
- This topic has 3 replies, 2 voices, and was last updated 5 years, 6 months ago by
Artem Temos.
-
AuthorPosts
-
May 28, 2020 at 5:17 pm #198728

RazuParticipantHello, I used the below code to open QuickView window when someone clicks on the product image but I want to show QuickView window too for all products when someone clicks on the product title. Please give me the code to do this. Thanks
I used this code on Global Custom JS
jQuery('body').on('click', '.product-image-link, .product-element-bottom', function(e) { e.preventDefault(); jQuery(this).parents('.product-grid-item').find('.open-quick-view').click(); });May 29, 2020 at 6:17 am #198830
Artem TemosKeymasterHello,
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
May 29, 2020 at 8:05 pm #199061
RazuParticipant1. Awesome, it works. Since QuickView mood is ON for all links then I want to remove QuickView icon on hover. So for all products, it will show only “Add to Cart” and “Wishlist” icon. Please give me code as it.
2. When someone adds product on Cart, I want to popup notification for both desktop and mobile version which will auto-hide after a few seconds, how can I do this?
3. On the mobile version, how can I resize the QuickView window? I want it so that the user can click on other spaces to hide the window as it works on the desktop. Currently, QuickView window covers about 95% so the user needs to click on The close icon to hide QuickView window. If there more spaces then the user might click on other spaces to hide this.
4. I used Black Friday Demo, Please see attached screenshot, I want to remove BlackFriday very TOP banner but I don’t see any option to remove it, I don’t see any option on header builder.
May 30, 2020 at 3:40 pm #199253
Artem TemosKeymaster1. Try to add the following code snippet to the Custom CSS area in Theme Settings to hide that button
.wd-quick-view-btn { display: none; }2. Sorry, but there is no such option in our theme.
3. There is no way to decrease it on mobile since it will become unusable on small devices.
4. You can disable/configure that part in Theme Settings -> Shop -> Header banner.
-
AuthorPosts
Tagged: quickview
- You must be logged in to create new topics. Login / Register
