MyBB Community Forums

Full Version: Donate page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,

I downloaded the donate page mod but i don't know how to make it appear on my forum nav bar. Can someone help me?

Timer
Go to ACP > Templates > Header Templates > header > Edit and find;

<ul>

Add the following code just after the <ul>;

<li><a href="YOUR_LINK_URL"><img src="YOUR_IMAGE_URL" alt="" title="" />YOUR_LINK_TEXT</a></li>

Save template.

In this way you can add as many links as you can Smile
I used this:
<li><a href="{$mybb->settings['bburl']}/donate.php" class="donate">{$lang->toplinks_donate}</a></li>
and the donate page is on the nav bar but the word donate don't come up. Its just blank but you can press on it.
I don't think that is a valid language string so change
<li><a href="{$mybb->settings['bburl']}/donate.php" class="donate">{$lang->toplinks_donate}</a></li>
to
<li><a href="{$mybb->settings['bburl']}/donate.php" class="donate">donate</a></li>
Either way is to add the following code in your ./inc/languages/english/global.lang.php file;
$l['toplinks_donate'] = "Donate";

and use your code;
<li><a href="{$mybb->settings['bburl']}/donate.php" class="donate">{$lang->toplinks_donate}</a></li>