post built with BB does not format like post feed

Sorry I’m not sure how to title this.

We have a site using BB them and BB agency plugin.
I setup some posts using BB (turned off post to use BB page builder plugin)

I setup a two column format for part of the post.
http://gowebdev.net/thegirls/joey-test/

I setup another page to show post feed that match the category.
http://gowebdev.net/thegirls/sales-v2/

Notice that the two columns have been reduced to one.
is there any way to change it back?

I looked at making a module override, but it looks like the issue is coming from the function: the_content();

  • I would like it to output, the way it was input.

I hope that makes sense.

Hi Joey,

Unfortunately, Beaver Builder layouts are only formatted for posts in the main WordPress query. If you want posts to be formatted outside of that, you’ll need to use the fl_builder_global_posts filter. Let me know if you have any questions about that.

Justin

So I’m still pretty green with filters, but I’m guessing you are suggesting that I use the filter to reformat the content that is displayed by the post_grid module?

Hi Joey,

No problem! That filter allows you to pull in the CSS/JS assets for layouts that aren’t in the main WordPress loop. All you have to do is create an array of the post IDs for each post in your post grid and pass it to that filter like so…

function my_global_builder_posts( $post_ids ) {
    $post_ids[] = '123';
    $post_ids[] = '456';
    $post_ids[] = '789';
    return $post_ids;
}
add_filter( 'fl_builder_global_posts', 'my_global_builder_posts' );

Let me know if you need help with that.

Justin