basinalders (@basinalders)

Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • @basinalders

    Member

    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!

    @basinalders

    Member

    I tried that first thing. The problem is that removing that section of the code makes every thread appear “closed” to replies.

    @basinalders

    Member

    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’ );’

Viewing 3 replies - 1 through 3 (of 3 total)