The problem I am facing is that since the upgrade to WP4.5, no formatting is applied to the forums anymore. See the screenshot below:
The first post you see should contain an image and the second post should contain a link.
The image in the first post is visible when editing the post, as shown below:
Goede middag,
You seem to use the full editor to add topics/replies and not the bbPress standard, correct ?
Some known issues with WP 4.5 so far (nothing to see with bbPress)
– Clean all your cache (hosting side, server side, browser side, …)
– If something uses jQuery to display it, there are known issues (see my answer on one of the plugins here: https://wordpress.org/support/topic/it-does-not-work-on-wordpress-45?replies=13#post-8281904)
Mvg,
Pascal.
Hi there,
Apologies for the late reply, has been unexpectedly busy this weekend.
Yes, I am using the full editor with bbPress, but as stated, when I turn this off, or use the text function, nothing seems to change.
Browser side caching I checked, by using FireFox (which is not my primary browser) and using the incognito mode of Chrome.
I am on my own server, and my Apache does not use caching, as far as I know 🙂
Is there an option in WP to enable caching?
I will check the jQuery bit tomorrow and will report back.
Thanks for your answers,
Ben
If need be, I can make an account for you, so you can see what the issue is (as my forums are private).
Adding the following to functions.php in my theme-folder, did nothing:
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"), false, '1.11.3');
wp_enqueue_script('jquery');
}
I also restarted Apache, also to no avail.
Hi,
I have no clue what this could be… maybe another (not really bbPress related) plugin ?
You tested this both as admin and as participant ?
Pascal.
Hi there!
I found the problem: it is in the Crayon Syntax Highlighter plugin, which I updated at around the same time I did my WP4.5 update.
So, this is fixed 🙂
Thanks for the help!
Great, glad you found it.
Don’t forget to remove the extra function above for deregistering jQuery if you don’t need it anymore.
Pascal.
Did that, thanks again! 🙂
Have a good day!
Hi @brhahlen,
I’ve resolved the issue commenting out the line 203 of crayon_wp.class.php
, this one:
$the_content = strip_tags($the_content);
It’s seem that with the new version this is the problem. How have you solved yours? Have you changed highlighter?
Hi @pr0v4
I downgraded highlighter to version 2.7.0, as that is the version that works properly.
I read somewhere that commenting out that line poses other issues.
Hope it helps!