That works great! Thanks so much, now that i know how to do that it makes stripping everything else down to only use one forum so much easier! thanks again!
I tried that first thing. The problem is that removing that section of the code makes every thread appear “closed” to replies.
Nevermind I figured it out. If you wan to do this open Index.php and replace:
do_action( 'bb_index.php', '' );
if (file_exists( BBPATH . 'my-templates/front-page.php' ))
require( BBPATH . 'my-templates/front-page.php' );
else require( BBPATH . 'bb-templates/front-page.php' );
With:
`
do_action( ‘bb_index.php’, ” );
if (file_exists( BBPATH . ‘my-templates/forum.php’ ))
require( BBPATH . ‘my-templates/forum.php’ );
else require( BBPATH . ‘bb-templates/forum.php’ );’