Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created July 31, 2018 17:21
Show Gist options
  • Save mgibbs189/5b32c512d4f1b43344b483d274ff4485 to your computer and use it in GitHub Desktop.
Save mgibbs189/5b32c512d4f1b43344b483d274ff4485 to your computer and use it in GitHub Desktop.
Redirect when a facet is interacted with
<script>
(function($) {
$(document).on('facetwp-refresh', function() {
if (FWP.loaded && '' == FWP_HTTP.uri) { // if not the initial pageload, and we're on the homepage
window.location.href = '/listings/?' + FWP.build_query_string(); // redirect
}
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment