2015-01-18, 11:52 PM
(This post was last modified: 2015-01-19, 12:08 AM by Destroy666.
Edit Reason: typos
)
There is no way currently. The whole group styling is replaced by the user styling. You'd have to edit the format_name() function inside inc/funcions.php to add the + in front of the nickname for that group.
Find:
I might add a prefix/suffix group option that's not changeable by users to possibly differentiate them from other groups, not sure if I will.
Find:
if($style)
$format = "<span style="$style">{username}</span>";
elseif(!$u["syn_usedefault"])
Replace with:if($style)
{
if($usergroup == 4) // change 4 to the usergroup id
$format = '+';
$format .= "<span style="$style">{username}</span>";
}
elseif(!$u["syn_usedefault"])
I might add a prefix/suffix group option that's not changeable by users to possibly differentiate them from other groups, not sure if I will.