Renny
10-12-2008, 10:00 PM
Hello,
I asked how to do this a while back and was told how and thought id post it incase everyone else would like to do this.
The mod is simple, it allows you to set a specific colour for a usergroup you set so when a member of that usergroup post it is automaticly posted as the colour you've set. however the colour can be changed if the user seletes a different colour from the text colours
>>> I take no credit for this coding, full credit to Karri (https://vborg.vbsupport.ru/member.php?u=7651) <<<
Please note you will have to edit the code to any layout(s) you have and want it to show on.
First login to your admincp --> Style Manager --> Edit Templates
In your postbit find
<!-- message -->
<div id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->
replace with
<!-- message -->
<if condition="(in_array($post['usergroupid'], array('6', '#', '#', '#')))">
<div class="VIP_$post[usergroupid]" id="post_message_$post[postid]">$post[message]</div>
<else />
<div id="post_message_$post[postid]">$post[message]</div>
</if>
<!-- / message -->
where the # are you put the user groups id for example if i wanted to set my admin, id put <if condition="(in_array($post['usergroupid'], array('6')))">
after you are happy with this click save.
If your using legacy, make sure you edit postbit_legacy instead of or aswell as postbit.
once this is done go to your Main CSS and add in "Additional CSS Definitions" the following
.VIP_# { color:#000000 }
.VIP_# { color:#ffffff }
# replace with the group id and click Save.
Remember that if you have more then one forum skin you will have to edit the code thoughout them inorder for it to show.
i hope this helps and can understand my guide. I will look in to trying to make it in to a mod. if you have any further questions please ask.
Renny
Show your support by clicking installed (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=193517);)
I asked how to do this a while back and was told how and thought id post it incase everyone else would like to do this.
The mod is simple, it allows you to set a specific colour for a usergroup you set so when a member of that usergroup post it is automaticly posted as the colour you've set. however the colour can be changed if the user seletes a different colour from the text colours
>>> I take no credit for this coding, full credit to Karri (https://vborg.vbsupport.ru/member.php?u=7651) <<<
Please note you will have to edit the code to any layout(s) you have and want it to show on.
First login to your admincp --> Style Manager --> Edit Templates
In your postbit find
<!-- message -->
<div id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->
replace with
<!-- message -->
<if condition="(in_array($post['usergroupid'], array('6', '#', '#', '#')))">
<div class="VIP_$post[usergroupid]" id="post_message_$post[postid]">$post[message]</div>
<else />
<div id="post_message_$post[postid]">$post[message]</div>
</if>
<!-- / message -->
where the # are you put the user groups id for example if i wanted to set my admin, id put <if condition="(in_array($post['usergroupid'], array('6')))">
after you are happy with this click save.
If your using legacy, make sure you edit postbit_legacy instead of or aswell as postbit.
once this is done go to your Main CSS and add in "Additional CSS Definitions" the following
.VIP_# { color:#000000 }
.VIP_# { color:#ffffff }
# replace with the group id and click Save.
Remember that if you have more then one forum skin you will have to edit the code thoughout them inorder for it to show.
i hope this helps and can understand my guide. I will look in to trying to make it in to a mod. if you have any further questions please ask.
Renny
Show your support by clicking installed (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=193517);)