How to Disable Quick Reply in Locked Thread to Admin, Super moderator and Moderator from being able to post a reply to a locked thread?
Advance thanks for the help..
Is hiding the quick reply enough?
(2015-08-19, 05:00 PM)Leefish Wrote: [ -> ]Is hiding the quick reply enough?
No i dont want to hide quick reply.. because it will affect the members..
Line 1522 of showthread.php should be (sorry this line number is for 1.8, for 1.6 it is 1299).
$plugins->run_hooks("showthread_end");
Insert the lines below before or after this line.
if (is_moderator(0,"",$mybb->user['uid']) || strpos(",{$mybb->user['usergroup']},{$mybb->user['additionalgroups']},", ",4,") !== false)
{
$quickreply = "";
}
When you don't like core edits, this can be added into a plugin.