• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Add "Affiliates" block on the sidebar

PoLiZe

Well-known member
Hi people of XenForo.
Today i have a code of Affiliates block on the sidebar

it's very simple, and we need edit the template: sidebar_online_user..


And add that to the final of the template..

HTML:
<xen:if is="{$visitor.user_id}">
<xen:else />
<div class="section">
<div class="secondaryContent">
<h3>Affiliates</h3>
<marquee width="200" height="200"direction=up>
HERE THE AFFS
</marquee>
</div></div>
</xen:if>


if u need show the block to all user, need delete the xen:if..

code:
HTML:
<div class="section">
<div class="secondaryContent">
<h3>Affiliates</h3>
<marquee width="200" height="200"direction=up>
HERE THE AFFS
</marquee>
</div></div>

i'm programming a add-on more advanzed for that.. but the friday i can finish that...

demo of the block on the sidebar: http://www.comparteonline.net/
 
Seems I am having the same problem as Joanne. Can someone check to confirm this mod is working still?
 
Top Bottom