Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Vanilla forum front page
I really like your Vanilla forum but I haven't yet figured out the logic of your front page. Shouldn't users be brought right to the category page where they can then choose which forums to enter and discussions to view. It makes no sense to display to users every discussion that's going on in every forum, particulary once a site gets large and has many forums.
0
This discussion has been closed.
Comments
// Vanilla Tab Positions $Configuration["TAB_POSITION_DISCUSSIONS"] = "10"; $Configuration["TAB_POSITION_CATEGORIES"] = "20"; $Configuration["TAB_POSITION_SEARCH"] = "30"; $Configuration["TAB_POSITION_SETTINGS"] = "40"; $Configuration["TAB_POSITION_ACCOUNT"] = "50";
So, the first thing to do would be to change the TAB_POSITION_CATEGORIES to something like 5 in the conf/settings.php file.
Up next you've got to make the user get forwarded to the category page instead of the discussion page when they sign in. You can do that with this configuration option:
$Configuration["FORWARD_VALIDATED_USER_URL"] = "./";
Just change that to point to ./categories.php in your conf/settings.php and you're done.