PDA

View Full Version : Some Text on showthread based on forumdisplay id "only on first post"


BUDIMAN
09-25-2011, 04:45 PM
Some Text on showthread based on forumdisplay id "only on first post"

i want put text on some showthread based on forumdisplay id only on first post..

i have ask on https://www.vbulletin.com/forum/showthread.php/388058-Some-Text-on-showthread-based-on-forumdisplay-id

help me please

BirdOPrey5
09-25-2011, 05:38 PM
You would need to edit your postbit or postbit_legacy template, whichever one you use for your forum.

Search in the template for:

{vb:raw post.message}

That is the text of the first post, so either immediately above or below that enter the code:


<vb:if condition="$post['isfirstshown'] AND $thread['forumid'] == X">
Text Goes Here
</vb:if>


Where X is the forumid of the forum you want to show it.