MyBB Community Forums

Full Version: i have one question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to order on each to create a thread or reply the thread must first enter the verification code..
help me sir plzz
You mean to force users to enter Captcha code while creating thread and reply just like default MyBB settings force this on Guests ?
yes very true .. but not just the guests but to all users ..
Warning: that would be very annoying to all users.

This requires core file edits.


In newthread.php:

On line 370, find and delete:
&& !$mybb->user['uid']

On line 881, find and delete:
&& !$mybb->user['uid']


In newreply.php:

On line 438, find and delete:
&& !$mybb->user['uid']


This should do it, but I haven't tested it.