The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#3
|
||||
|
||||
![]()
This is how I managed to make it work. I do it so that certain users get a certain color but it translates easily to the whole group getting the color you pick.
Go to your skins css and define something like .VIP_Group { color:#000000 } Then go to your postbit template and find Code:
<!-- message --> <div id="post_message_$post[postid]">$post[message]</div> <!-- / message --> and replace with Code:
<!-- message --> <if condition="(in_array($post['usergroupid'], array('group number goes here')))"> <span class="VIP_Group"><div id="post_message_$post[postid]">$post[message]</div></span> <else /> <div id="post_message_$post[postid]">$post[message]</div> </if> <!-- / message --> That should do what you are looking for. ![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|