• After upgrading to WordPress 4.0, my cBox stopped working. They offer you different ways of implementing it on your site, but I always chose deferred load using Java. That no longer works. I tried using their standard HTML for the box and that does work.

    I also noticed that Adsense stopped working in two areas of my site. Both areas are where I manually implemented the Java code for the ads. The other ads which continue to work are being served by Google’s publisher plugin on my site.

    Conclusion, there appears to be a compatibility issue with the new upgrade and manually implemented Java code. Any suggestions on how to get this working again? If you need it, my website is partyfavorz.com.

Viewing 3 replies - 1 through 3 (of 3 total)
  • @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!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Upgraded to 4.0 Java no longer working’ is closed to new replies.