Re: Ultimate Side Columns by Kerry-Ann. has anyone tried it ?
Code:
<if condition="in_array($bbuserinfo[usergroupid], array(1,OTHERS))">
This is only shown to users in the usergroupids listed.
</if>
Where it says OTHERS, put what ever other usergroup ID that you would like to show the ads. What I've done in the past was use it for guests and those that have not verified their emails.
Other ideas you can do (which I've also done in the past) was give members the ads but have a "Premium" usergroup and let them know if they donate $XX to the site that they will no longer see the ads.
Let me know how it works.
Also, here's another code that might come in handy:
Code:
<if condition="!in_array($bbuserinfo[usergroupid], array(5,6,7))">
This won't be shown to users in the usergroupids listed.
</if>
As you can see, the "!" indicates that it will show what ever is in between the if statement besides the usergroup(s) you choose.
Hope this helps.