XF 1.3 how can i hide ads in conversations and homepage of forum

jamalfree

Active member
hi how can i hide ads in conversations and homepage of forum

as vb

<vb:if condition="THIS_SCRIPT == 'calendar'">Show this only on calendar.php</vb:if>

i see those thread but, i dont found what i look
 
How can I show content on a specific page?
<xen:if is="{$contentTemplate} == 'xyz'">
This content will show on the xyz template
</xen:if>

So to show content on the forum list is: <xen:if is="{$contentTemplate} == 'forum_list'">

To not show content on the forum list is: <xen:if is="!{$contentTemplate} == 'forum_list'">
 
Top Bottom