Home › Forums › WoodMart support forum › Lazy Load › Reply To: Lazy Load
May 17, 2018 at 7:07 am
#58022
Artem Temos
Keymaster
Try to edit the file js/functions.js
and replace this function
function initMainGallery() {
$('.woocommerce-product-gallery__wrapper').addClass('owl-carousel').owlCarousel(woodmartTheme.mainCarouselArg);
};
with this one
function initMainGallery() {
$('.woocommerce-product-gallery__wrapper').addClass('owl-carousel').owlCarousel(woodmartTheme.mainCarouselArg);
$(document).trigger('wood-images-loaded');
};