Created
May 2, 2018 17:01
-
-
Save djrmom/830610597859bcd0d901f4163211bb27 to your computer and use it in GitHub Desktop.
facetwp scroll to top on wp_head hook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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) { | |
$('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