MyBB Community Forums

Full Version: Links won't work
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My friend and I installed a plugin where we can buy stuff, well, can you tell me how we can get a link to be right there on the picture?

[Image: 200tt14.jpg]
Admin CP -> Templates & Style -> Templates -> The Cure Templates -> Header Templates > header_welcomeblock_guest

Find:
<ul id="nav">
	<li><a href="{$mybb->settings['bburl']}">Home</a></li>
	<li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></li>
	<li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></li>
	<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></li>
</ul>

Before </ul>, add:
	<li><a href="{$mybb->settings['bburl']}/example.php">Example</a></li>

Then do the same thing for the header_welcomeblock_member template.
Okay, thanks.