MyBB How to add an affiliate box in the index/footer

Status
Not open for further replies.

CyberAff

Active Member
6,106
2010
592
0
[Tutorial] How to add an affiliate box in the index?

  • Step 1: Go to your theme's templates. (Admin CP -> Templates & Styles -> Left menu -> Templates -> {YOUR THEME'S TEMPLATE}
  • Step 2: Click on "Index page" templates.
  • Step 3: Click on "index_boardstats" templates.
  • Step 4: Add this code to everything above the original code.
PHP:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr>
<td class="thead">
<div><strong>Affiliates</strong></div>
</td>
</tr>
</thead>
<tbody>
<tr>
<tr>
<td class="trow1"><span class="smalltext">************Affilate Thing here.************</span></td>
</tr>
<tr>

    <td class="tfoot" style="text-align: right">
        <span class="smalltext">
            <a href="{$mybb->settings['bburl']}/private.php?action=send&uid=(YOUR USER ID}>Click here if you wanna affiliate with us!</a>
        </span>
    </td>
</tr>
</tbody>
</table>
<br />
  • Step 5: Change the text in ************{something here}************
Tutorial written by Leo/Darkly. Credits also goes to Leo/Darkly :)
 
4 comments
Update,

One thing that I'm interested in adding to it is another table row to add a show/hide all affiliates like the one seen on this page http://brawldomain.com/

PHP:
<br>
<!-- start: affiliate table -->

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder"'>
<tr>
<td class='thead' colspan='5'>
<span class="smalltext"><center><b>{$mybb->settings['bbname']} Affiliates</b><center></span>
</td>
</tr>
<tr>
<td width='79%' class='trow1' valign='top'>
<marquee onmouseover="this.stop()" onmouseout="this.start()" direction="left" scrollamount="3">

Affiliate Banners Go Here

</marquee>
</td>
<td width='21%' valign='top' class='trow1' align='center'>
<img src="URL of Your MiniBanner" /><br />
<a href="URL to Thread/Board where you can affiliate">Click Here to Affiliate!</a>
</td>
</tr>

<tr>
<td width='100%' class='trow1' valign='top'>
<b>{$mybb->settings['bbname']}
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['newbox_e']}.gif" id="newbox_img" class="expander" alt="[-]" title="[-]" /></div>
</td>
</tr>

</table>
<!-- end: Affiliate table -->

Credits: scylla
 
Status
Not open for further replies.
Back
Top