MyBB Community Forums

Full Version: Block quick reply action
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I'm creating a plugin, for me, where I block the creation of new threads and new replies in certain forums, for user who have a certain number of posts. With this hook, I'm blocking the creation of new replies:

$plugins->add_hook('newreply_start', 'plugin_do');

But I can reply a thread with the quick reply form, how can I block also the quick reply?

Regards and Thanks
Try hooking into showthread_end. In that function make sure $quickreply is declared as a global. Something like this should work for a function.

function block_quickreply()
{
global $mybb, $quickreply;
if($mybb->user['postnum'] < Insert Number Here)
{
$quickreply = "";
}
}