[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.
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.
Thanks, routes did the trick