It is a theme issue… Though I expect you knew that was coming
You might be able to find some more info for ‘other’ bbPress Atahualpa issues via:
http://forum.bytesforall.com/search.php?searchid=749383
With all that said, I was terrified looking at this theme, it seems that it doesn’t use WordPress Template Hierarchy and overrides/creates it’s own templates and far too many options for my liking.
Create a new file named bbpress.php
in your theme folder \wp-content\themes\atahualpa
Add the following code to the bbpress.php
file and you should be good to go:
<?php
/**
* bbPress wrapper template.
*/
get_header(); ?>
<?php while( have_posts() ): the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php get_footer(); ?>