Conditional based on post count

Brent W

Well-known member
Is there a template conditional that can be used on member profile pages to add something to the page if the user as more than x amount of posts?
 
member_view template is using for member profile page and this template contains $user variable. So, you can use this condition on template
HTML:
<xen:if is="{$user.message_count} > 500">
wooow, more 500 posts?
</xen:if>
 
Top Bottom