How to disable sidebar only in bbPress and not WordPress?

I am trying to integrate bbPress with WordPress, and the only thing in my way (for now) is the sidebar. How do I disable sidebar in bbPress?

I know that one way is to manually remove or comment out <?php get_sidebar)(); ?> in all bbPress template files.

Read More

But I would like to know if there a way that will allow me to quickly allow me to turn it on or off — like adding some code in functions.php etc.

Thanks.

Related posts

Leave a Reply

1 comment

  1. Okay, I manually commented out all instances of <?php get_sidebar)(); ?> in bbPress templates like so:

    <?php //get_sidebar)(); ?>
    

    Alternatively, you can simply remove the code as well. But I consider it a bad idea, in case you want to have sidebar in the future.