Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active May 2, 2024 09:34
Show Gist options
  • Save mgibbs189/af2bf17c240bf3241d9eb5829bd6a4fa to your computer and use it in GitHub Desktop.
Save mgibbs189/af2bf17c240bf3241d9eb5829bd6a4fa to your computer and use it in GitHub Desktop.
Flatsome - support lazy load images and quick view
<?php
add_action( 'wp_head', function() {
?>
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
Flatsome.behaviors['lazy-load-images'].attach();
Flatsome.behaviors['quick-view'].attach();
});
})(jQuery);
</script>
<?php
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment