[2.2.4] How to set categories/discussions as homepage?

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?

Best Answer

  • R_JR_J Admin
    Answer ✓

    Don't know much about 2.2.4 but I'd bet you could change the default route under www.example.com/dashboard/routes ;)

Answers

  • R_JR_J Admin
    Answer ✓

    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.

  • peregrineperegrine MVP
    edited June 2014

    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.

  • ZhaanZhaan ✭✭

    Thanks, routes did the trick

Sign In or Register to comment.