In case you’re using TwentyTen theme it’s in ‘/wp-content/plugins/bbpress/bpp-themes/twentyten’.
Otherwise, I don’t know if compatibility mode come with this level of feature.
Although you can just associate base slug with a page and set it to full-width template (I’m not entirely sure if this works).
Hi Raphaelsuzuki – no, making a page (with full width template) and setting it as the base slug doesn’t work I’m afraid.
I’m not using TwentyTen, I’m using a child theme based on Thematic. I ended up just filtering the sidebar away with the following in my main theme’s functions.php:
function remove_sidebar() {
if(function_exists('is_bbpress') && is_bbpress()){
return FALSE;
} else {
return TRUE;
}
}
add_filter('thematic_sidebar', 'remove_sidebar');
Hope that helps someone in future.