Log in

View Full Version : Message below first post.


MonsterDK
10-12-2011, 05:06 PM
Hi,

I'm looking for a mod of some sort that will enable me to place a message below a thread.
The message will show on Threads but only below the first post and not below replies.

To be used to ask people to use the Thanks button and avoid making spammy replies.

Any help appreciated...

BirdOPrey5
10-13-2011, 02:37 PM
If you edit your postbit or postbit_legacy template...

Put your message at the very bottom of the template, and wrap it in this conditional:


<vb:if condition="$post['isfirstshown']">

Your message here

</vb:if>


Then the message will only appear below the first post of every page...

If you want it to show only on the very first post even on a multi-page thread use:


<vb:if condition="$post['postcount'] == 1">

Your message here

</vb:if>

MonsterDK
10-13-2011, 04:08 PM
Thanks you.. works a treat :D :D :D