2015-01-19, 12:14 AM
(2015-01-18, 11:52 PM)Destroy666 Wrote: 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:
Replace with:if($style) $format = "<span style="$style">{username}</span>"; elseif(!$u["syn_usedefault"])
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.
functions.php is seen as:
/* + PL:style_your_nick + */ if($style)
/* + PL:style_your_nick + */ $format = "<span style=\"$style\">{username}</span>";
/* + PL:style_your_nick + */ elseif(!$u["syn_usedefault"])
What do I do to fix it with those extra texts?