Created
January 12, 2021 17:59
-
-
Save mgibbs189/45362d8a836c36313464a9fc551f7541 to your computer and use it in GitHub Desktop.
FacetWP - isotope and ensure that images are loaded
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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