MyBB Community Forums

Full Version: Change Navbit Name
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I seen this thread:
https://community.mybb.com/post-867686.html


But what's posted in there doesn't seem to help me any at all. I'm trying to change just the name of the nav bit for Help Documents page.

Instead of it saying Help Documents I'd like it to say Guides.

Help is appreciated!

http://elspeth-rpg.com/
You can modify header template for that (ACP> Templates and Styles> Template> Your Theme Templates> header Templates > header), pretty simple.
Change this to
				<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>

this
						<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">Guides</a></li>

Hope it helps
Regards
WallBB
Hey there, maybe I wasn't thorough with my explanation. I know how to change the name in the menu, everything will eventually be customized. I mean how to change the actual navigation bit name. See the attached file...

I know it's possible to do as I've seen some sites that have done it.
You can rename it in language file misc.lang.php (e.g.: ROOT/inc/language/english/)

line #8 (breadcrumb)
$l['nav_helpdocs'] = "Help Documents";

line #41(browser tab title)
$l['help_docs'] = "Help Documents";
It worked! Thank you very much! Smile