XF 1.1 If Template x hide x

Nudaii

Well-known member
Howdy i want to have some code that shows on every page except the index page

how would i accomplish this? :)

thanks in advance
 
FYI for others, this condition works in the PAGE_CONTAINER and other templates within the container scope:

Code:
<xen:if is="{$contentTemplate} != 'forum_list'">

</xen:if>
 
Top Bottom