Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created January 12, 2021 17:59
Show Gist options
  • Save mgibbs189/45362d8a836c36313464a9fc551f7541 to your computer and use it in GitHub Desktop.
Save mgibbs189/45362d8a836c36313464a9fc551f7541 to your computer and use it in GitHub Desktop.
FacetWP - isotope and ensure that images are loaded
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
var $grid = $('.columns-3').imagesLoaded(function() {
$grid.isotope({
layoutMode: 'masonry',
itemSelector : '.product',
masonry: {
columnWidth: '.product',
}
});
});
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment