PDA

View Full Version : Legacy Postbit Question


scottct1
03-29-2010, 02:56 PM
in vBulletin 3.8 I could put the following code in my posbit template and it would add a line showing the official staff members for my forum...

The code I used was...

<if condition="IS_MEMBER_OF($post, 5,6,7)">
<div class="nzbpostbit"><b>&nbsp;Proud Staff Member </b></div></if>

How do I do this in vb4 using the legacy postbit?

Thanks!

Seven Skins
03-29-2010, 03:00 PM
In vb4.0 if condition has been chnaged slightly.

<vb:if condition="is_member_of($post, 5,6,7)"> CODE HERE </vb:if>

Try using this format.