Quote:
Originally Posted by heyzeus909
Rather than individual members, can usergroup (s) be employed? For example, I could see using this to watermark postbits with a 'Subscriber' logo for members with paid subscriptions. The idea would be that once someone subscribes, they are automatically put into a "subscriber" usergroup, and thus have their postbits denoted as such. Thereby encouraging others to also subscribe.
|
Sure I believe this will work for usergroups.
Change the following line, which is the fist bit in the code.
Code:
<vb:if condition="in_array($post['userid'], array(X,X,X))">
To this:
Code:
<vb:if condition="is_member_of($post, X,X,X)">
X being the usergroupid, if that does not work let me know and I will test it out.