Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Forked from djrmom/facet.js
Last active August 18, 2017 21:02
Show Gist options
  • Save mgibbs189/d1dd8b48faf82b7015c414b7d15d78f4 to your computer and use it in GitHub Desktop.
Save mgibbs189/d1dd8b48faf82b7015c414b7d15d78f4 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