Brent W Well-known member Apr 29, 2017 #1 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?
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?
DrYontem Well-known member Apr 29, 2017 #2 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>
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>