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.
Options

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

ZhaanZhaan Professional fool ✭✭

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

  • Options
    R_JR_J Ex-Fanboy Munich 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

  • Options
    R_JR_J Ex-Fanboy Munich 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 ;)

  • Options
    hgtonighthgtonight ∞ · New Moderator

    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.

  • Options
    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.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • Options
    ZhaanZhaan Professional fool ✭✭

    Thanks, routes did the trick

Sign In or Register to comment.