Hi,
If you disable your Performance Options first, then open functions.js
and locate this:
fullWidthShop: function() {
var shopItems = jQuery('.full-width-shop').find('.products'),
itemWidth = shopItems.find('li.product').first().data('width'),
shopSidebar = shopItems.find('.sidebar');
if (shopSidebar.length > 0) {
// Full Width Shop Sidebar
SWIFT.woocommerce.fullWidthShopSetSidebarHeight();
$window.smartresize( function() {
SWIFT.woocommerce.fullWidthShopSetSidebarHeight();
});
shopItems.isotope({
itemSelector: '.product',
layoutMode: 'masonry',
masonry: {
columnWidth: '.'+itemWidth
},
isOriginLeft: !isRTL
});
SWIFT.woocommerce.animateItems(shopItems);
shopSidebar.stop().animate({
'opacity': 1
}, 500);
shopItems.isotope( 'stamp', shopSidebar );
shopItems.isotope( 'layout' );
setTimeout(function() {
shopItems.isotope( 'layout' );
}, 500);
}
Find this line: layoutMode: 'masonry',
and change to layoutMode: 'fitRows',