
07-23-2007, 01:00 PM
|
|
|
Join Date: Nov 2004
Posts: 91
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by pollon
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 
|
oh wow nice... thanks
|