bbPress is not yet supported.
I’m working for it, and will be soon in the version 1.5.8.
I’ve a solution of your problem.
Go to Appearance > Editor, find content-page.php from the Template.
Find the following lines:
<?php if ( is_page() ) : ?>
<?php the_content(); ?>
<?php else: ?>
<?php the_excerpt(); ?>
<?php endif; ?>
Replace the above line with the following:
<?php if ( function_exists( 'is_bbpress' ) ): ?>
<?php if ( is_bbpress() ): ?>
<?php the_content(); ?>
<?php endif; ?>
<?php else: ?>
<?php if ( is_page() ) : ?>
<?php the_content(); ?>
<?php else: ?>
<?php the_excerpt(); ?>
<?php endif; ?>
<?php endif; ?>
The forum is visible now but something in here breaks login/register/logout for theme my login plugin.
ok. it looks like a slight change in condition work for me.
<div class=”the-content”>
<?php if ( is_bbpress() ) :
the_content();
elseif ( is_page() ) :
the_content();
else :
the_excerpt();
endif
?>
</div>