Created
May 26, 2020 13:44
-
-
Save blift/d3ec9984875ea71e36f92a3d5f3d9c54 to your computer and use it in GitHub Desktop.
Dropdown select2 in FacetWP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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