MyBB Community Forums

Full Version: How do I add items to my menu?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Alright, my forum (gaming-mafia.com) runs MyBB 1.6.3, and I want to add more items to my menu (as seen on freevps.us). I tried using Menu Manager (bad choice) and I don't understand anything of tutorials like this one. How do I do this?
just folllow my tut :

navigate to your ACP > Themes and templates > templates > your theme template > header template > and open it .

just find :

<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>

add after it :

<li><a href="{$mybb->settings['bburl']}/your link url">your link name</a></li>

and then save it ....

do the same for all links u wanted to add...this is so simple Smile
(2011-07-11, 11:49 AM)envira Wrote: [ -> ]just folllow my tut :

navigate to your ACP > Themes and templates > templates > your theme template > header template > and open it .

just find :

<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>

add after it :

<li><a href="{$mybb->settings['bburl']}/your link url">your link name</a></li>

and then save it ....

do the same for all links u wanted to add...this is so simple Smile

Is there also a way to make it go to an external link (e.g. freevps.us)? I tried, but it goes to http://www.gaming-mafia.comhttp//www.freevps.us/ (and I did remove the "/" after the }).
EDIT: nevermind, I have managed to solve that problem with a redirect page Big Grin.
(2011-07-11, 05:37 PM)supertanno Wrote: [ -> ]Is there also a way to make it go to an external link (e.g. freevps.us)? I tried, but it goes to http://www.gaming-mafia.comhttp//www.freevps.us/ (and I did remove the "/" after the }).
EDIT: nevermind, I have managed to solve that problem with a redirect page Big Grin.

To add an external link, just add this.
Quote:<li><a href="http://www.freevps.us">your link name</a></li>