Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
[2.2.4] How to set categories/discussions as homepage?
Zhaan
✭✭
I'm pretty sure you could do this in earlier versions of Vanilla, but now my only options are Discussions, Categories, and Profile Wall.
Can it still be done somehow? Maybe using config.php?
0
Best Answer
-
R_J Admin
Don't know much about 2.2.4 but I'd bet you could change the default route under www.example.com/dashboard/routes
2
Answers
Don't know much about 2.2.4 but I'd bet you could change the default route under www.example.com/dashboard/routes
You set categories as the default controller then select the discussions option for the categories layout.
Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
the closest you can get via dashboard categories and mixed layout.
which sets categories page with discussions.
$Configuration['Routes']['DefaultController'] = array('categories', 'Internal');
$Configuration['Vanilla']['Categories']['Layout'] = 'mixed';
with this layout you can adjust the number of discussions that appear in each category via
$Configuration['Vanilla']['Discussions']['PerCategory'] = "10";
default is 5.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Thanks, routes did the trick