birgereelen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP4.7 – wpautop is not working after updateYou are right, updating plugins is a step of the checklist.
Bad experiences in mind, we are always very cautious about everything concerning NextGen.
That’s why we never use this plugin again in new projects.We do know the link of the support forum, but praying or running away is a faster and better sollution.
Forum: Fixing WordPress
In reply to: WP4.7 – wpautop is not working after updateI managed to pin-point the exact problem.
The plugin NextGen Gallery (undoubtly the worst plugin ever made) caused the problem.
Only after updating to the most recent version solved the problem.Sadly enough this gave loads of other -non-related- problems we have to solve.
With kind regards.
Forum: Fixing WordPress
In reply to: WP4.7 – wpautop is not working after updateAn example of a website with this specific problem is:
http://www.stiemerheide.be/omgeving/
I did add the following code to make sure paragraphs and alignment is set correctly:
// the_content(); // old code
$content = apply_filters( ‘the_content’, $content );
$content = do_shortcode( $content );
echo wpautop( $content );Forum: Fixing WordPress
In reply to: WP4.7 – wpautop is not working after updateHello,
For several of our websites we did completed the ‘checklist’, manually disabled all plugins, cleared caches etc.
We also noticed some other plugins (NextGen gallery) is not working like it should.
In stead of showing the gallery, it shows ‘Click to edit’.
It seems to me soms filters are not triggered when calling the_content().