Last active
June 4, 2018 13:16
-
-
Save mgibbs189/225ed20071190394ee38 to your computer and use it in GitHub Desktop.
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
(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