Skip to content

Instantly share code, notes, and snippets.

@blift
Created May 26, 2020 13:44
Show Gist options
  • Save blift/d3ec9984875ea71e36f92a3d5f3d9c54 to your computer and use it in GitHub Desktop.
Save blift/d3ec9984875ea71e36f92a3d5f3d9c54 to your computer and use it in GitHub Desktop.
Dropdown select2 in FacetWP
// select2 with search option
$(document).on('facetwp-loaded', function() {
$('.facetwp-dropdown').select2();
});
// select2 without search option
$(document).on('facetwp-loaded', function() {
$('.facetwp-sort-select').select2({
minimumResultsForSearch: -1,
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment