PDA

View Full Version : Condition for first page?


SnakeV
07-26-2010, 03:54 AM
There is any condition for display some text ONLY on first page of a thread?.

Thanks!

BUDIMAN
07-30-2010, 02:57 PM
paste at postbit / postbit legacy template

To show only in first post ( only show at first/thread starter post )

<if condition="$post[postcount]==1">
- your content here -
</if>

to show at first post on every page (if you want to add to another post, just make a new condition then change the number [maxposts] == 1"> )

<if condition="$post[postcount] % $vboptions[maxposts] == 1">
- your content here -
</if>