Limit product gallery images
-
Hi there, I know there is no option under theme options to limit the product gallery images when you hover.
Is there any way to do that? Most of our products have over 15 images and even though we love the feature, once you hover it’s a mess because it shows all images. Is there any way to limit them to 5 for example?
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add the following custom code to the functions.php file and check how it works:
add_filter('woodmart_max_number_product_thumbnails', function () {
return 5;
});
Best Regards,