I'm beginning to think I have a more fundamental bbpress issue than any one particular plug-in. But, here's what my front page looks like right now:
http://img246.imageshack.us/img246/909/1701scrnshtul4.png
I have the following plug-ins activated: My Views, My Views module - most/least views, and bb-topic-views.
Here's what my front-page.php looks like:
<?php bb_get_header(); ?>
<?php if ( $forums ) : ?>
<?php if ( bb_forums() ) : ?>
<table id="forumlist">
<tr>
<th><h2 style="border:0;margin:0;padding:0;float:left;text-align:left;"><?php bb_option('name'); ?> <?php _e('Forums'); ?></h2></th>
<th><?php _e('Topics'); ?></th>
<th><?php _e('Views'); ?></th>
<th><?php _e('Posts'); ?></th>
</tr>
<?php while ( bb_forum() ) : ?>
<tr<?php bb_forum_class(); ?>>
<td><?php bb_forum_pad( '<div class="nest">' ); ?><a href="<?php forum_link(); ?>"><?php forum_name(); ?></a><small><?php forum_description(); ?></small><?php bb_forum_pad( '</div>' ); ?></td>
<td class="num"><?php forum_topics(); ?></td>
<td class=num><? echo $forum->views; ?></td>
<td class="num"><?php forum_posts(); ?></td>
</tr>
<?php endwhile; ?>
</table>
<?php endif; // bb_forums() ?>
<div id="discussions">
<?php if ( $topics || $super_stickies ) : ?>
<table id="latest">
<tr>
<th><h2 style="border:0;margin:0;padding:0;float:left;text-align:left;"><?php _e('Latest Discussions'); ?> — <?php new_topic(); ?></h2></th>
<th><?php _e('Views'); ?></th>
<th><?php _e('Posts'); ?></th>
<th><?php _e('Last Poster'); ?></th>
<th><?php _e('Freshness'); ?></th>
</tr>
<?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php _e('Sticky:'); ?> <big><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></big></td>
<td class="num"><?php echo $topic->views; ?></td>
<td class="num"><?php topic_posts(); ?></td>
<td class="num"><?php topic_last_poster(); ?></td>
<td class="num"><small><span class=timetitle title="<?php echo date("r",strtotime($topic->topic_time)); ?>"><?php topic_time(); ?></span></small></td>
</tr>
<?php endforeach; endif; // $super_stickies ?>
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></td>
<td class="num"><?php echo $topic->views; ?></td>
<td class="num"><?php topic_posts(); ?></td>
<td class="num"><?php topic_last_poster(); ?></td>
<td class="num"><small><span class=timetitle title="<?php echo date("r",strtotime($topic->topic_time)); ?>"><?php topic_time(); ?></span></small></td>
</tr>
<?php endforeach; endif; // $topics ?>
</table>
<?php endif; // $topics or $super_stickies ?>
<table id="frontpagemeta">
<tr>
<th><h2><?php _e('Views'); ?></h2></th>
<th><h2><?php _e('Hot Tags'); ?></h2></th>
</tr>
<tr>
<td id="viewdiv">
<ul id="views">
<?php foreach ( get_views() as $view => $title ) : ?>
<li class="view"><a href="<?php view_link(); ?>"><?php view_name(); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
</td>
<td class="frontpageheatmap">
<?php tag_heat_map(); ?>
</td>
</tr>
</table>
</div>
<?php else : // $forums ?>
<h3 class="bbcrumb"><a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a></h3>
<?php post_form(); endif; // $forums ?>
<?php bb_get_footer(); ?>