Hi,
I'm currently using
PHP Code:
<if condition="$GLOBALS[threadinfo][replycount] >= 2">
I use this to show an ad in SHOWTHREAD if there thread has more than 2 replies. This works fine on the first page, but when the thread goes on to the 2nd page, and initially you only have 1 post, it's showing the ad - because although there is only 1 post on this page, there are 10+ posts in this thread total and therefore the conditional above is TRUE.
Is there a conditional I could use that would avoid this, i.e one that could consider how many posts are actually showing on the current page in a showthread?