Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active June 4, 2018 13:16
Show Gist options
  • Save mgibbs189/225ed20071190394ee38 to your computer and use it in GitHub Desktop.
Save mgibbs189/225ed20071190394ee38 to your computer and use it in GitHub Desktop.
(function($) {
$(document).on('facetwp-refresh', function() {
// if pageload and no facets are active
if (! FWP.loaded && '' == FWP.build_query_string()) {
// if on an archive page
if ($('body').hasClass('tax-job_listing_category')) {
// extract the term from the URI, and set it as the facet value
FWP.facets['membership'] = FWP_HTTP.uri.split('/').slice(-1);
}
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment