MyBB Community Forums

Full Version: How To Show QuickReply With Guest Posting Disabled?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I would like to show the QuickReply Box with Guest Posting Disabled.

So I would like the QuickReply box to always be visible to every single person viewing the forum.

Does anyone know how to do this?
Open showthread.php, find:
if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid)) && $mybb->settings['quickreply'] != 0 && $mybb->user['showquickreply'] != '0' && $forum['open'] != 0)

Replace with:
if(($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid)) && $mybb->settings['quickreply'] != 0 && $mybb->user['showquickreply'] != '0' && $forum['open'] != 0) || !$mybb->user['uid'])

IIRC it should work Toungue