2012-04-17, 02:21 PM
Well i thanks to Yaldaram already got an answer to how this is possible. But now i have more the question is anybody able (and ofcourse willing) to turn this into a Plugin for me.
This is what i need:
A plugin that will do the php code changes displayed in this thread:
http://community.mybb.com/thread-117039-...#pid847104
This is so that users below 10 post are required to use the captcha when posting.
A nice little addition for this plugin would be the ability in the options to set:
Hopefully somebody is willing and able for me to write this plugin. Or give me a direction how im supposed to write it (since i have no clue)
This is what i need:
A plugin that will do the php code changes displayed in this thread:
http://community.mybb.com/thread-117039-...#pid847104
Quote:In the following files:
./showthread.php line 1052
./newreply.php line 438 and 1030
./newthread.php line 370 and 881;
change:
if($mybb->settings['captchaimage'] == 1 && function_exists("imagepng") && !$mybb->user['uid'])
Into this:
if($mybb->settings['captchaimage'] == 1 && function_exists("imagepng") && (!$mybb->user['uid'] || $mybb->user['postnum'] < 10))
The 10 being for now the number of post needed
This is so that users below 10 post are required to use the captcha when posting.
A nice little addition for this plugin would be the ability in the options to set:
- On/Off Switch
- Number of Post Required
- Disabled for certain User Groups
Hopefully somebody is willing and able for me to write this plugin. Or give me a direction how im supposed to write it (since i have no clue)