Yes, to display ads below the last post in all pages of the thread, I use...
Quote:
<if condition="$post['islastshown']">
|
To display ads below the 1st post in all pages of the thread, I use...
Quote:
<if condition="$post[postcount] % $vboptions[maxposts] == 1 AND $GLOBALS[threadinfo][replycount] >= 2">
|
When I use the below condition to display ad below every 5 posts(replacing X as 5), the former last post display does not seem to work. While the latter 1st post display works fines.
Quote:
<if condition="$post[postcount] % X == 0">
|
What could be the issue? Please advise.