Skip to content

Instantly share code, notes, and snippets.

@raphaelkross
Forked from stevesearer/preload.php
Created April 12, 2017 22:00
Show Gist options
  • Save raphaelkross/f3fa36d856095bc0d91da306c28d4c68 to your computer and use it in GitHub Desktop.
Save raphaelkross/f3fa36d856095bc0d91da306c28d4c68 to your computer and use it in GitHub Desktop.
<?php
function fwp_preload_facets() {
?>
<script>
(function($) {
$(document).on('facetwp-refresh', function() {
if (! FWP.loaded && '' == FWP.build_query_string()) {
FWP.facets['product_availability'] = ['americas'];]
FWP.refresh();
}
});
})(jQuery);
</script>
<?php
}
add_action( 'wp_head', 'fwp_preload_facets', 100 );
add_filter( 'facetwp_template_force_load', '__return_true' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment