Hello There,
Thanks for writing in! I have checked the page and I can confirm the issue. Could you please remove this JS code in your Cornerstone’s custom JS section first?
jQuery(document).ready(function($) {
$('a[href*="#"]').off('touchstart click');
var $body = $('body');
var bodyHeight = $body.outerHeight();
var adminbarHeight = $('#wpadminbar').outerHeight();
var navbarFixedTopHeight = $('.x-navbar-fixed-top-active .x-navbar').outerHeight();
var locHref = location.href;
var locHashIndex = locHref.indexOf('#');
var locHash = locHref.substr(locHashIndex);
//
// Calculate the offset height for various elements and remove it from
// the element's top offset so that fixed elements don't cover it up.
//
function animateOffset( element, ms, easing ) {
$('html, body').animate({
scrollTop: $(element).offset().top - 135
}, ms, easing);
}
//
// Page load offset (if necessary).
//
$(window).load(function() {
if ( locHashIndex !== -1 && $(locHash).length ) {
animateOffset(locHash, 1, 'linear');
}
});
//
// Scroll trigger.
//
$('a[href*="#"]').on('touchstart click', function(e) {
$href = $(this).attr('href');
notComments = $href.indexOf('#comments') === -1;
notAccordion = $href.indexOf('#collapse-') === -1;
notTabbedContent = $href.indexOf('#tab-') === -1;
if ( $href !== '#' && notComments && notAccordion && notTabbedContent ) {
var theId = $href.split('#').pop();
var $el = $('#' + theId);
if ( $el.length > 0 ) {
e.preventDefault();
animateOffset($el, 850, 'easeInOutExpo');
}
}
});
//
// Initialize scrollspy.
//
if ( $body.hasClass('x-one-page-navigation-active') ) {
$body.scrollspy({
target : '.x-nav-wrap.desktop',
offset : adminbarHeight
});
//
// Refresh scrollspy as needed.
//
$(window).resize(function() {
$body.scrollspy('refresh');
});
var timesRun = 0;
var interval = setInterval(function() {
timesRun += 1;
var newBodyHeight = $body.outerHeight();
if ( newBodyHeight !== bodyHeight ) {
$body.scrollspy('refresh');
}
if ( timesRun === 10 ) {
clearInterval(interval);
}
}, 500);
}
});
This could be the cause of your issue. This JS code turns off the anchor links when clicked.
Hope this helps. Kindly let us know how it goes.