The view from the JavaScript console.
Unfortunately this new method currently caused conflicts with many heavily used plugins, and I’ve been seeing many jQuery is not defined and Uncaught ReferenceError: jQuery is not defined errors in my JavaScript console. Luckily, there’s a simple fix.
How-to Fix It:
- FTP into your site and open up the
/wp-config.phpfile. - Turn off script concatenating by adding this line:
define('CONCATENATE_SCRIPTS', false); |
Make sure you add this before this section:
/** Absolute path to the WordPress directory. */ if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); |
Hopefully this helps you save the day for your WordPress installs!
