Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active November 30, 2021 04:39
Show Gist options
  • Save djrmom/865965e1069565c426871ad05d889d0f to your computer and use it in GitHub Desktop.
Save djrmom/865965e1069565c426871ad05d889d0f to your computer and use it in GitHub Desktop.
facetwp remove search from fselect
<?php
/**
** set option to disable fselect search field
**/
add_action( 'wp_footer', function() { ?>
<script>
(function($) {
FWP.hooks.addFilter('facetwp/set_options/fselect', function(opts, facet) {
if (facet.facet_name == 'product_categories') {
opts.showSearch = false;
return opts;
}
});
})(jQuery);
</script>
<?php }, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment