MyBB Community Forums

Full Version: How to add to the Menu
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I add another option to this menu?

http://screensnapr.com/v/PVl0ce.png
ACP >> Templates >> Header Templates
(2011-12-11, 11:17 AM)Andre R. Wrote: [ -> ]ACP >> Templates >> Header Templates

How come when I do this:
<li><a href="{$mybb->settings['bburl']}/myawards.php">{$lang->toplinks_myawards}</a></li>

The link works, but there is an empyt box, without any text saying "MyAwards" in?
^ replace {$lang->toplinks_myawards} with MyAwards ..
(2011-12-11, 11:32 AM)ranjani Wrote: [ -> ]^ replace {$lang->toplinks_myawards} with MyAwards ..

So, the new code should be?

{$lang->toplinks_MyAwards}

?
...

<li><a href="{$mybb->settings['bburl']}/myawards.php">Awards</a></li> 
{$lang->toplinks_MyAwards} is not available from language files . instead it is simple to use MyAwards for the link text
(2011-12-11, 11:55 AM)Andre R. Wrote: [ -> ]...

<li><a href="{$mybb->settings['bburl']}/myawards.php">Awards</a></li> 

Thanks! Repped/.