Hello all,
I am new to bbPress, just installed it for the first time ever and I am wondering how can I disable the "Latest Discussions" section so that only the forums show on the front page.
Thanks,
Jordan
Hello all,
I am new to bbPress, just installed it for the first time ever and I am wondering how can I disable the "Latest Discussions" section so that only the forums show on the front page.
Thanks,
Jordan
Find \bb-templates\kakumei\front-page.php (or the same template name in any alternate theme you might be using) and find the line that says
<?php if ( $topics || $super_stickies ) : ?> (around line 11) and make it say
<?php if ( 0 && ( $topics || $super_stickies )) : ?>
which will make the if statement always fail and never show the latest discussions. If you ever want to restore it, just remove the zero &&.
Thanks _ck_ that did the trick.
You must log in to post.