Disable facets on the frontpage, or any page by changing the condition. Is usefull when you want to filter on a different page.
add_action('wp_footer', 'facet_disable', 100);
function facet_disable(){
if (is_front_page()) {
?>
<script>
(function($) {
$(function() {
if ('undefined' !== typeof FWP) {
FWP.auto_refresh = false;
console.log('gedisabled')
}
});
})(fUtil);
</script>
<?php
}