Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created November 3, 2020 19:47
Show Gist options
  • Save djrmom/ef79d716a096c7dad0d6f4633530fad5 to your computer and use it in GitHub Desktop.
Save djrmom/ef79d716a096c7dad0d6f4633530fad5 to your computer and use it in GitHub Desktop.
facetwp close flyout on facetwp-loaded
<?php
/** close flyout on facetwp-loaded so that the user doesn't need to close after facet refreshes **/
add_action( 'wp_head', function() { ?>
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
if (FWP.loaded && $('.facetwp-flyout').hasClass('active') ) {
FWP.flyout.close();
}
});
})(jQuery);
</script>
<?php } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment