XF 1.5 How can I show content if unread conversations count is superior than 0 ?

Wyvh

Member
Greetings,
Title says it all:
How can I show content if unread conversations count is superior than 0 ?

Like, if you have 1, 2, 3 or more unread conversations, show X content.
I did check the Conditional Statements guide.

Thanks !
 
PHP:
<xen:if is="{$visitor.conversations_unread} > 0">
    this will show if the visitor has unread conversations
</xen:if>
 
Back
Top Bottom