XF 2.2 Checking a user has a post count greater than x with a template conditional.

Lee

Well-known member
Licensed customer
Is it possible to check that a user has a post count greater than n with a template conditional?
 
Assuming you mean the visitor viewing the page:
HTML:
<xf:if is="$xf.visitor.message_count > 30">
    Content here
</xf:if>
 
Back
Top Bottom