Quote:
Originally Posted by xxshatteredsoul
Sorry this doesn't make any sence to me. I go to Plugin manager under Plugins & products and don't see any glowing usernames plugin or usergroups like you're talking about? Please explain? I followed the instructions at the url you gave me.
BTW after doing this mod I am using v3.6.8 and no glow shows up at all. I am using IE7 also.
|
Go to your Admin CP > Plugins and Produtcs > Plugin Manager, then find ATMM Glowing Username - User Name Glow From postbit_display_complete.... Click edit.
Then in the plug in you should see this:
PHP Code:
//User Name Glow Hack by Stitch @ aotrangmongmo.com/chutgidenho.com
// begin glowing users
$usergroupid=$post[usergroupid];
if ($usergroupid == 5)
{
$post[musername] = "
<table style=\"filter:glow(color=PaleTurquoise, strength=5)\">
<tr>
<td>
<font class='bigusername' color='Red'>
<b>$post[username]</b>
</font>
</td>
</tr>
</table>";
}
if ($usergroupid == 6)
{
$post[musername] = "
<table style=\"filter:glow(color=YellowGreen, strength=5)\">
<tr>
<td>
<font class='bigusername' color='Blue'>
<b>$post[username]</b>
</font>
</td>
</tr>
</table>";
}
if ($usergroupid == 7)
{
$post[musername] = "
<table style=\"filter:glow(color=Cyan, strength=5)\">
<tr>
<td>
<font class='bigusername' color='Green'>
<b>$post[username]</b>
</font>
</td>
</tr>
</table>";
}
if ($usergroupid == 1 )
{
$post[musername] = "
<table style=\"filter:glow(color=orange, strength=5)\">
<tr>
<td>
<font class='bigusername' color='seagreen'>
<b>$post[username]</b>
</font>
</td>
</tr>
</table>";
}
// end glowing users
You can change the usergroups ID, and glow color and color as well. You can also get rid of usergroups. Just have a mess around, I'm sure you'll get it.
Hope that helped.