Re: Forums not displaying after an upgrade to WP 2.3 and BBPress 8.3?
I didn’t have any parent children forums- stayed away from that and kept it all top level.
I basically just modified the basic theme that comes with the forums- the only thing I changed was the CSS, so the index.php file should be the same, aside from the few things I added in to call the “who’s online” list and the like.
<?php
require(‘./bb-load.php’);
$bb_db_override = false;
do_action( ‘bb_index.php_pre_db’, ” );
if ( isset($_GET) && ‘1’ == $_GET ) :
$forums = false;
elseif ( !$bb_db_override ) :
$forums = get_forums(); // Comment to hide forums
$topics = get_latest_topics();
$super_stickies = get_sticky_topics();
endif;
do_action( ‘bb_index.php’, ” );
bb_load_template( ‘front-page.php’, array(‘bb_db_override’, ‘super_stickies’) );
?>