<?php
/** Adds script to header
** Scroll to top of results listing on any facet interaction
** For more info see:
** https://facetwp.com/help-center/facets/facet-types/pager/#how-to-add-pagination-scrolling
**/
add_action( 'wp_head', function() { ?>
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
if (FWP.loaded) {
$('html, body').animate({
scrollTop: $('.facetwp-template').offset().top
}, 500);
}
});
})(jQuery);
</script>
<?php } );