Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active September 15, 2018 11:25
Show Gist options
  • Save djrmom/71ad877f466ee079dd0d137740772fde to your computer and use it in GitHub Desktop.
Save djrmom/71ad877f466ee079dd0d137740772fde to your computer and use it in GitHub Desktop.
facetwp - click event to reset individual facet
(function($) {
$(document).on('click', '#reset', function() {
FWP.is_reset = true;
FWP.facets['my_facet'] = []; // set facet to no selections
delete FWP.facets['paged']; // remove "paged" from URL
FWP.refresh();
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment