Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active September 30, 2020 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save djrmom/4b3cd25d08ce2036a1df326963785824 to your computer and use it in GitHub Desktop.
Save djrmom/4b3cd25d08ce2036a1df326963785824 to your computer and use it in GitHub Desktop.
facetwp set order of (or remove) flyout facets
<?php
add_action( 'wp_footer', function() {
?>
<script>
(function($) {
if ('object' !== typeof FWP) {
return;
}
FWP.hooks.addFilter('facetwp/flyout/facets', function(facets) {
return ['facet3', 'facet1', 'facet2']; // change the facet display order
});
})(jQuery);
</script>
<?php
}, 100 );
(function($) {
if ('object' !== typeof FWP) {
return;
}
FWP.hooks.addFilter('facetwp/flyout/facets', function(facets) {
return ['facet3', 'facet1', 'facet2']; // change the facet display order
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment