Beaver Builder Theme have no extra layout settings option for individual post details page. Using manual code you can make a full width blog layout. You will add the code in your child theme’s functions.php file. This code will work on whole site pages (like blog, archive, author, category, tags, search etc pages):
1 2 3 4 5 6 7 8 |
//* Force Fully Creating Full Width Blog Layout add_filter( 'fl_theme_mods', 'bbt_full_width_blog_layout' ); function bbt_full_width_blog_layout( $mods ) { $mods['fl-blog-layout'] = 'full-width'; $mods['fl-blog-sidebar-size'] = 0; return $mods; } |