Skip to content

Instantly share code, notes, and snippets.

@djrmom
Created January 9, 2018 00:18
Show Gist options
  • Save djrmom/a24c01e473673376e1af2ea18d39ae65 to your computer and use it in GitHub Desktop.
Save djrmom/a24c01e473673376e1af2ea18d39ae65 to your computer and use it in GitHub Desktop.
facetwp auto-check facet
<?php
function fwp_update_facets() {
?>
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
if ( 'trainings-finden' == FWP_HTTP.uri ) {
if ( FWP.facets['standort'].indexOf("aarau") > -1 && ! ( FWP.facets['standort'].indexOf("flexibel") > -1 ) ) {
FWP.is_reset = true;
FWP.facets['standort'].push("flexibel");
FWP.refresh();
}
}
});
})(jQuery);
</script>
<?php
}
add_action( 'wp_head', 'fwp_update_facets' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment