I'm trying to hide all conversations with zero reply.
But then, the first page only show 5 conversations (15 hidden due to zero reply).
**I want to show 20 conversations on the first page without zero reply.
The "Showing conversations 1 to 20 of 41" doesn't minus those with zero reply.
Any help would be appreciated.
Code:
<xen:if is="{$conversations}">
<xen:foreach loop="$conversations" value="$conversation">
<xen:if is="{$conversation.reply_count}>0">
<xen:include template="conversation_list_item" />
</xen:if>
</xen:foreach>
<xen:else />
But then, the first page only show 5 conversations (15 hidden due to zero reply).
**I want to show 20 conversations on the first page without zero reply.
The "Showing conversations 1 to 20 of 41" doesn't minus those with zero reply.
Any help would be appreciated.