One page nav

All of a sudden the site is spewing thousands of JQuery error to the console when clicking on main navigation:

[Error] TypeError: n.easing[this.easing] is not a function. (In ‘n.easingthis.easing’, ‘n.easing[this.easing]’ is undefined)
run (jquery.js:4:1167)
i (jquery.js:4:4348)
tick (jquery.js:4:7821)

One page nav is no longer working. I have latest X theme and Cornerstone.

https://www.brandheroes.ca

I needed to manually load up JQUERY-UI in functions.php. Seems like there is a bug going on here via updates?. Will this be fixed? Feeling all hacky.

if (!is_admin()) add_action(“wp_enqueue_scripts”, “my_jquery_enqueue”, 11);
function my_jquery_enqueue() {
wp_deregister_script(‘jquery-ui’);
wp_register_script(‘jquery-ui’, (‘https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js’), false, ‘1.12.1’);
wp_enqueue_script(‘jquery-ui’);
}

Hello @geoffj,

Please try remove your customizations and try testing for a plugin conflict. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time. Then if you have caching, either a plugin or server cache, please clear the it first then try again. Also, don’t forget to clear browser cache. Some customers experience this issue and found the root cause was browser cache.

If the issue persists, please give us WP Admin access inside a secure note so we could check what’s going on.

Thank you. I’ll have a look and get back to you.
GJ

Hey @geoffj,

In case you also want to check the current supported versions of the plugin, please check here:

Let us know how it goes.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.