PDA

View Full Version : Show text for one user in postbit?


Booyakan
08-09-2011, 02:01 AM
I want one user to have extra text under his name in postbit but I want everyone to be able to see it. How can I achieve this? I am used to using conditionals but I am not trying to hide anything from anyone here, I just want the one user to have something extra.

kh99
08-09-2011, 01:37 PM
I think you'd want something like:

<vb:if condition="$post['userid'] == X">
// extra stuff
</vb:if>


then put it in the postbit or postbit_legacy template where you want it to appear.

Booyakan
08-09-2011, 02:19 PM
Thank You, that worked.

Ravallojr
08-09-2011, 03:35 PM
Thank you, I was looking for this..