PDA

View Full Version : <if> statement to "hide" a table when user logs in


SludgeMeister
03-30-2006, 08:26 PM
Hello,

Could someone point me in the direction of some documentation that will explain how I can write (what I believe will be an <if> statement) that will hide a html table when someone logs into vbulletin?

I am using VBA and have customised the adv_portal template with a html table. Its all fine except its static and displays at all times.

I am trying to make it only display to users that have not logged in.

On login I simply want the table to vanish.

Would appreciate some help with this.

Thanks,

Z.

sabret00the
03-30-2006, 09:48 PM
<if condition="!$show[member]">your table here</if>

SludgeMeister
03-31-2006, 08:36 AM
<if condition="!$show[member]">your table here</if>

Thank you very much sabret00the :)