Quote:
Originally Posted by me on vB.com
have a custom page, that I'd like to limit to members that are not in the guest or banned user groups but that also have a minimum post count of 30.
I found the conditionals thread in the customizations sub-forum, (on vBulletin.com), but there was no mention of detecting posts counts there.
|
-=-
Okay, so I got this from vBulletin.com
<if condition="is_member_of($bbuserinfo, X, Y, Z)">
<!-- content here is for users in groups that can see the main content -->
<else />
<!-- content here is shown to users in groups who can not see the main content -->
</if>
Now, that works for limiting it to certain groups. But what I'd like to do for one of the custom pages is disallow the guest and banned groups from viewing the content, but allowing all the other groups if a member's post count is 30 or more.
What I could do, I suppose, is turn it around a bit and put the content after the else bit, put the id numbers for the guest and banned groups in the first bit so they then see a not allowed message, but how do I tell if anyone has a post count of 30 or more?