This will be Credited too
r007 &
Jake Bunce @ vb.com
Here is the solution to this:
Username- Login to the admin panel
- Open the Tab ‘Usergroups’
- Open the Sub-Section ‘Usergroup Manager’
- Press ‘Go’ on the Usergroup you want to edit.
- In the ‘Username HTML Markup’ type
In the 1st. box Code:
<div style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;">
In the 2nd. box
or
User Title Code:
<table style="filter:glow(color=yellow, strength=4)">USER TITLE</table>
more info...
Use the code in the
User Title field of the usergroup in your:
Admin CP -> Usergroups -> Usergroup Manager -> Edit Usergroup -> User Title
If you don't want users to be able to change their title from the one granted by their group, then you need to deny custom title privs from those groups:
Admin CP -> Usergroups -> Usergroup Manager -> Edit Usergroup -> Can Use Custom Title
Also keep in my that title ladders will override group titles:
Admin CP -> User Titles -> User Title Manager
After making these changes you may need to update your user title counter for the changes to take affect:
Admin CP -> Import & Maintenance -> Update Counters -> Update User Titles
--------------------------------------------------------------------------
forumdisplay_announcement:
Find:
Code:
<span class="smallfont"><a href="member.php?$session[sessionurl]u=$announcement[userid]" target="_blank">$announcement[username]</a> ($announcement[usertitle])</span>
Replace with:
Code:
<span class="smallfont"><a href="member.php?$session[sessionurl]u=$announcement[userid]" target="_blank">$announcement[username]</a> (<if condition="is_member_of($bbuserinfo, 6)"><div style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;"></if>$announcement[usertitle]<if condition="is_member_of($bbuserinfo, 6)"></div></if>)</span>
MEMBERINFO:
Find:
Code:
<if condition="$userinfo['usertitle']"><div class="smallfont">$userinfo[usertitle]</div></if>
Replace with:
Code:
<if condition="$userinfo['usertitle']"><div class="smallfont" <if condition="is_member_of($bbuserinfo, 6)">style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;"</if>>$userinfo[usertitle]</div></if>
memberlist_resultsbit:
Find:
Code:
<if condition="$show['usertitlecol']"><div class="smallfont">$userinfo[usertitle]</div></if>
Replace with:
Code:
<if condition="$show['usertitlecol']"><div class="smallfont" <if condition="is_member_of($bbuserinfo, 6)">style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;"</if>>$userinfo[usertitle]</div></if>
postbit:
Find:
Code:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
Replace With:
Code:
<if condition="$post['usertitle']"><div class="smallfont" <if condition="is_member_of($bbuserinfo, 6)">style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;"</if>>$post[usertitle]</div></if>
postbit_legacy:
Find:
Code:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
Replace With:
Code:
<if condition="$post['usertitle']"><div class="smallfont" <if condition="is_member_of($bbuserinfo, 6)">style="filter:progid:DXImageTransform.Microsoft.Glow(Color=blue,Strength=3);width: 100%;"</if>>$post[usertitle]</div></if>
One more point u need to do when copy & paste code, remove the space in this part of code "(Colo r=blue,Strength=3);" so it looks like "(Color=blue,Strength=3);" It happens when I codewrap in forum. <----ok if u like it click that little Rep.