Quote:
Originally Posted by Bisha
What is Conditional tag for post count!
If (post count XXX)
do this 1
else
this 2?
|
If you are in the postbit and you want the post count of the person who made the post:
Code:
<vb:if condition="$post['posts'] >= XXX">
do this
<vb:else />
this
</vb:else>
If you want the post count of the current user logged in use:
Code:
<vb:if condition="$bbuserinfo['posts'] >= XXX">
do this
<vb:else />
this
</vb:else>