Was there an answer to this? I was hoping to create a subscription based system where if they were subscribed, no ads would be displayed so they can purchase subscription to have an ad-free forum. Anything of the sort come about yet?
You can use a conditional for subscription members such as:
PHP Code:
<if condition="is_member_of($bbuserinfo, 9)">
<else />
Ad Code Here
</if>
Basically, you can stick that bit of coding anywhere you like and if the member is subscribed, it will show nothing, for non-subscribed members (i.e. guests, members, admins, ect) it will show the ads.
You can further it by using:
PHP Code:
<if condition="is_member_of($bbuserinfo, 5) OR is_member_of($bbuserinfo, 6) OR is_member_of($bbuserinfo, 7) OR is_member_of($bbuserinfo, 9)">
<else />
Ad Code Here
</if>
This should keep the ads away from Mods, Super Mods, Admins and the Subscribed group.