Hi,
Please check the browser console log. If you see errors, I’d like to see them.
Hi, I see this
Uncaught ReferenceError: jQuery is not defined
<anonymous> /wp-content/plugins/amazon-auto-links/asset/js/ajax-unit-loading.min.js:6
It seems jQuery is not loaded on your site.
Can you insert the following code in your theme functions.php to see if it solves the problem?
/* Amazon Auto Links - Load jQuery */
add_action( 'wp_enqueue_scripts', 'aal_load_jquery' );
function aal_load_jquery() {
wp_enqueue_script( 'jquery' );
}
Thanks. Tried that and it works but only when I’m logged in. Same console error after.
Turned off the “defer render blocking js” option in my caching plugin and its working now.
Glad to hear you sorted it!
Yes, I turned back on defer render blocking but was able to make /wp-includes/js/jquery/jquery.js an exception.
Thanks