Remove sidebar on bbpress forum

Hello support team,

I would like to remove the sidebar from the entire bb press forum and have the forum be in the center of the page like in this image.

Would this be possible?

Hello @dstro003,

Thanks for asking. :slight_smile:

You can take a look at the solution mentioned in following thread to have fullwidth bbPress forum:

Thanks.

Thanks for the help!

I have been following the instructions from the thread that you posted, but my forum does not have a place for me to change the page attributes.

I am not sure what to do here.

Hi,

Sorry, to make it fullwidth, you can add this in your child theme’s functions.php file

function make_full_width($layout) {  
    if( x_is_bbpress()) {      
       $layout = "full-width";
   }
  return $layout;
}
add_filter('x_option_x_layout_content', 'make_full_width',999999);

Hope this helps

Thanks for the help @paul.r :slight_smile:

We are delighted to assist you with this.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.