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.
Start New Discussion Menu Item
Desmanthus
New
How can I add a "Start New Discussion" button (viewable only to logged in users) to my top menu buttons? Thanks.
0
Comments
themes/__your_theme__/views/default.master.php
The relevant code should be:
if ($Session->IsValid()) { $this->Menu->AddLink('Discussion', T('Start a New Discussion'), '/post/discussion', array('Garden.SignIn.Allow'), array('class' => 'UserNotifications')); }
/cd