Quote:
Originally Posted by IsMaR
is there any way from preventing moderators from editing prefixes and just have it set by supermod or admin?
|
Do you mean setting/editing/deleting prefixes from a forum ???
If so you have to do a very easy template modification:
in
FORUMDISPLAY find:
Code:
<if condition="$foruminfo['allowprefix']">
<div><label for="fa_cat"><input type="radio" name="do" id="fa_cat" value="manageprefix" />$vbphrase[manage_threadprefix]</label></div>
</if>
Replace with:
Code:
<if condition="is_member_of($bbuserinfo, X, Y, Z)"><if condition="$foruminfo['allowprefix']">
<div><label for="fa_cat"><input type="radio" name="do" id="fa_cat" value="manageprefix" />$vbphrase[manage_threadprefix]</label></div>
</if></if>
You must change
X,
Y,
Z with the number of usergroups allowed to edit prefixes. In this way Moderators can't see the link to edit prefixes in "Forum tools".
It worked on my forum