Log in

View Full Version : Conditional Adverts


mcyates
09-02-2005, 09:07 AM
I want everyone except one usergroup "usergroup 24" to see the ads. How will i do this?

Marco van Herwaarden
09-02-2005, 11:34 AM
you could use a template conditional:
<if condition="!is_member_of($userinfo, 25)">
Your ad code
</if>

Chris_D
09-02-2005, 01:46 PM
Alternatively you can use this hack:

https://vborg.vbsupport.ru/showthread.php?t=83081

It's great. I use it on my forums.

mcyates
09-02-2005, 04:06 PM
you could use a template conditional:
<if condition="!is_member_of($userinfo, 25)">
Your ad code
</if>

THANKS