Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created December 28, 2020 15:45
Show Gist options
  • Save mgibbs189/314f2346855e0c47d6d621802918f029 to your computer and use it in GitHub Desktop.
Save mgibbs189/314f2346855e0c47d6d621802918f029 to your computer and use it in GitHub Desktop.
FacetWP - trigger Envira Gallery on ajax refresh
<?php
// Add to your (child) theme's functions.php
add_action( 'wp_head', function() {
?>
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
$(document).trigger('envira_load');
});
})(jQuery);
</script>
<?php
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment