Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created November 12, 2020 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/017391bb6657e7566eea26215385a77e to your computer and use it in GitHub Desktop.
Save mgibbs189/017391bb6657e7566eea26215385a77e to your computer and use it in GitHub Desktop.
Automatically expand all top-level terms
<?php
// Add to your (child) theme's functions.php file
add_action( 'wp_head', function() {
?>
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
$('.facetwp-facet-product_categories > .facetwp-checkbox .facetwp-expand').each(function() {
if ('[+]' == $(this).text()) {
$(this).click();
}
});
});
})(jQuery);
</script>
<?php
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment