Log in

View Full Version : Check user against a usergroup?


WritersBeat
05-03-2007, 09:39 AM
if I wanted to show ads only to members, or whatever - how would I display this if logic in the template?

Dismounted
05-03-2007, 10:08 AM
<if condition="$show['guest']">AD CODE HERE</if>
Would only show to guests.
<if condition="!$show['guest']">AD CODE HERE</if>
Would only show to members.