Post Carousel Blank Slides

Written by the Divi Engine Documentation Team

Introduction

Follow these steps if your Post Carousel slides are blank.

Post Carousel Module Slides

The code for the Post Carousel Module looks like this.

<div> <div></div> <div></div> </div>

The Problem: WordPress Adds <P> Tag

From time to time a WordPress website will automatically add <p> tags to the page which breaks the carousel. The following code is an example.

<div> <div></div> <p></p> <div></div> </div>

The Solution: Add PHP

To fix this problem, add the following code to the functions.php file of your child theme.

remove_filter('the_content', 'wpautop');

More Support?

Please email us at [email protected] if you are unable to get your Divi Engine plugin working.


Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.