MyBB Community Forums

Full Version: Plugin to add menu
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I got an plugin for donation ,the url is www.anon-tuts.com/donate.php

How can i add that one in my menu? any plugin, if not how?
Go to: Admin CP > Templates > Your theme's templates > Header templates > header > and find;
</ul>
and add the following code just before that,
<li><a href="{$mybb->settings['bburl']}/donate.php" title="Donate" alt="Donate">Donate</a></li>

You probably need to add image in front of Portal name, for this Replace above code with the following;
<li><a href="{$mybb->settings['bburl']}/donate.php" title="Donate" alt="Donate"><img src="IMAGE_LINK"> Donate</a></li>
(2011-11-12, 05:05 AM)Yaldaram Wrote: [ -> ]Go to: Admin CP > Templates > Your theme's templates > Header templates > header > and find;
</ul>
and add the following code just before that,
<li><a href="{$mybb->settings['bburl']}/donate.php" title="Donate" alt="Donate">Donate</a></li>

You probably need to add image in front of Portal name, for this Replace above code with the following;
<li><a href="{$mybb->settings['bburl']}/donate.php" title="Donate" alt="Donate"><img src="IMAGE_LINK"> Donate</a></li>

Ty so much!