This topic has 2 replies, 2 voices, and was last updated 2 years, 9 months ago ago by Rose Tyler
Hi, when we enable Products Masonry in the xstore theme options, as the user scrolls down to browse additional products, and more items load, all the text completely becomes unreadable running into each other.
see attached: https://screenrec.com/share/iKyUIA1BQ8
Hello,
Try to add the next code here – https://prnt.sc/1qxxryo
reInitIsotope();
function reInitIsotope() {
$('.et-isotope').isotope('destroy');
var $isotope = $('.et-isotope');
$isotope.each(function () {
var $grid;
$grid = $(this).isotope({
itemSelector: '.et-isotope-item',
isOriginLeft: !etConfig.layoutSettings.is_rtl,
masonry: {
columnWidth: '.grid-sizer'
}
});
// layout Isotope after each image loads
$grid.imagesLoaded().progress( function() {
$grid.isotope('layout');
});
});
}
Regards
Tagged: best selling, customizer, masonry, products, themes, woocommerce, xstore
You must be logged in to reply to this topic.Log in/Sign up