Thanks for sending that over. I believe I’ve tracked down the trouble. Recently I added a smooth scrolling feature for moving from one part of a page to another and that seems to be the source of the trouble. Here’s how to remove it:
- Go to the Appearance section in your WordPress control panel and select Edit.
- From the list of files on your right, choose custom-js.php and find this spot:
// Smooth Scrolling
jQuery(document).ready(function(){
jQuery('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = jQuery(target);
jQuery('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {
window.location.hash = target;
});
});
});
- Delete that and save your changes.
That should fix the problem for you. I’ll remove or reconfigure that part for the next theme update too.
If you have any questions or trouble, let me know.
Thanks again,
Bill