@kjam did you ever get it to work? If Yes, what did you do?
I have some issues with Java as well after I updated to 4.0 so I cannot update my pages as the edit box isn’t functioning.
Thanks
Andreas
It’s been a while now but yes I did get everything working again. I would normally have put the resolution in the forum, but I have yet to ever get help from anyone in the WordPress forums. Seriously lame.
Anyway, if my memory serves me correctly, I use Cloudfare for CDN others might use WT3 Total Cache. I disabled the Rocketloader on Cloudfare which forces all the Java to load asynchronously. Uninstalled Google Publisher and Jetpack (I don’t use my Cbox any longer) then purged my cache and re-installed. Everything is now working.
I went back and created a couple of page rules for Google Publisher and Jetpack to prevent Rocketloader from loading the Java later in the page view process. I had no choice. Right now, they don’t play well together. Everything else was fine though.
Hope that helps.
Hi,
I know it’s been a while but I had a similar issue and this is how I solved it.
A bit of background, we’re using the enfold theme and have just upgraded WordPress. We’re also using the Cloudflare plugin and were using aggressive caching on the site. I paused Cloudflare, disabled all plugins & re-installed but still nothing.
I checked in the Javascript console on the page editor (where I was getting a spinning circle indefinitely) and saw a jQuery error that a[rel=] was not a valid expression.
So after some digging I found the error in line 948 of the file “/wp-content/themes/enfold/framework/js/avia_colorpicker.js”
Before:
.bind('click', showTab).filter('a [rel=' + hash + ']');
After:
.bind('click', showTab).filter('a [rel="' + hash + '"]');
Hope this helps someone!