We have renamed Post Grid plugin to Post Grid Combo
Ticket for: Post Grid
0
Lloyd DeKay
Our grids of multiple posts are displaying in a single vertical column for every grid we have. This just started recently. We haven't added any plugins that might have been conflicting.
Screenshot at https://imgur.com/a/ZoE9KZF
2 Subscribers
Submit Answer
2 Answers
Best Answer
0
I can see the empty paragraph tag in injected under each item div, please see the screenshot
https://imgur.com/ivAM65H
You can add the following CSS to the quick fix.
.post-grid .grid-items p {display: none;}
I guess this is wpautop issue, https://codex.wordpress.org/Function_Reference/wpautop
remove_filter( 'the_content', 'wpautop' );
I hope you can solve the issue by adding following code under theme functions.php file
Best Answer
0
Welcome to our forum.
Please send me your post grid page url, might be CSS issue.
Regards
Glad to solve the issue. the filter might now work if any other 3rd party plugin overrides the filter and it will add p tag again. but i will try to minimize the error next version.
Regards