PDA

View Full Version : Question regarding condition


ensure
06-21-2011, 01:11 AM
What condition should I use to display a banner on my footer on all pages except for the showthread page?

Lynne
06-21-2011, 01:35 AM
<vb:if condition="THIS_SCRIPT != 'showthread'">
banner stuff
</vb:if>

ensure
06-21-2011, 05:44 AM
<vb:if condition="THIS_SCRiPT != 'showthread'">
banner stuff
</vb:if>

Works on vB 3.X:

<if condition="THIS_SCRIPT != 'showthread'">
Banner
</if>

Lynne
06-21-2011, 03:22 PM
Sorry about that. I corrected it above just in case someone grabs it without reading the whole thread.