Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Forked from djrmom/custom-hooks.php
Last active September 20, 2018 12:39
Show Gist options
  • Save mgibbs189/4f0563686ebfe7ee3c4f855b559df6d4 to your computer and use it in GitHub Desktop.
Save mgibbs189/4f0563686ebfe7ee3c4f855b559df6d4 to your computer and use it in GitHub Desktop.
facetwp scroll to top on wp_head hook
<?php
/** adds script to header with a conditional check to not scroll to top
** when the load more button has been clicked
**/
add_action( 'wp_head', function() { ?>
<script>
(function($) {
$(document).on('facetwp-loaded', function() {
if (FWP.loaded && 'undefined' === typeof FWP_JSON.load_more) {
$('html, body').animate({
scrollTop: $('.facetwp-template').offset().top
}, 500);
}
});
})(jQuery);
</script>
<?php } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment