MyBB Community Forums

Full Version: Add stuff to the navation bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How do I add urls to the navation bar, like gamesection, site rules, and they would be next to like forums or members.

Also how do I remove urls from the nav bar, and how to change the name?
Gamesection and Siterules are plugins and the Search, Member List, Calendar, Help can befound in the header template you can add and remove links in the header template

I hope I helped
Would that be in the ACP or in the .inc.config?
Acp, Templates & Style, Default Templates,Header Templates, header
Site rules is a plugin? Can I have a link to that plugin?

What do I do from there?
I would have it find it
This maybe it
http://mods.mybb.com/view/rulespage

Where the header template?
What do I add or delete?
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>
That's the code for Search, Members List, Calendar, help
what did you want removed or add you did not say
(2012-10-24, 04:44 AM)Howman Wrote: [ -> ]
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>
That's the code for Search, Members List, Calendar, help
what did you want removed or add you did not say

I want the Calendar removed and I want to add the home page and forums.
To remove calendar link delete
<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>

if you want to add home and forums
use this example
<li><a href="PUT LINK TO PAGE HERE"><img src="PUT LINK TO IMAGE HERE" alt="" title="" />PUT NAME OF LINK HERE</a></li>
Pages: 1 2