MyBB Community Forums

Full Version: Donate to us
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can someone help me make a donate to us page or something so members can donate to my forum?
Wrong forum to ask this. Not support, more of a request.
/Moved to plugin requests.
Sorry for the wrong category.
I installed now, how do i show up a donate to us button on the index page?
You can do it by editing the "header" template of your theme and adding a new button.
Can you tell me where exactly to add it and how does the code looks like?
Find this code in "header" and add the red line:

Quote:<div class="menu">

<ul>

<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>

<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>

<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>

<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>

<li><a href="{$mybb->settings['bburl']}/donate.php"><img src="{$theme['imgdir']}/toplinks/donate.gif" alt="" title="" />Donate</a></li>

</ul>

</div>

You need also to upload an icon "donate.gif" in your theme images directory.