XF 1.4 Conditional to check number of posts on page?

Rob

Well-known member
Hi, I want to show an advert after the first post on every page (X) of a thread... but only if there is more than one post to display.

I'm hoping there is a variable available to templates that will help me achieve this.

Thanks for your help.
 
I don't think the reply count is mentioned in the guide, so use this:

<xen:if is="{$post.position} % {$xenOptions.messagesPerPage} == 0 AND {$thread.reply_count} > 0">

You may also want to add the conversation element to stop them being shown there.
 
Unless I'm missing something will $xenOptions.messagesPerPage not show you that? Or are you suggesting if the posts per page is less than the maximum specified (i.e. first/last page)?
 
Top Bottom