Add a menu item, How To Reverse order of Menu Items*
UnderDog
MVP
This discussion was created from comments split from: Add a menu item.
There was an error rendering this rich post.
0
Comments
Thank you very much for providing this thread! It was exactly what I was looking for.
HOWEVER - I need the order to be reversed. In other words, I need the Home link to be first, not last.
Any thoughts? THANKS!
Link - http://koboldcompany.com/forum/
you have the dark mist theme it appears.
$Configuration['Garden']['Menu']['Sort'] = array('Home','Dashboard', 'Discussions', 'User', 'Activity', 'Applicants');
with home in the first position, or put the sort order you want.
In the darkmist theme views folder - default.master.php
if ($this->Menu) { $this->Menu->AddLink('Dashboard', T('Dashboard'), '/dashboard/settings', array('Garden.Settings.Manage')); // add the line below ( /home - should point to the link you want for home) $this->Menu->AddLink('Home', T('Home'), '/home');I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.