Log in

View Full Version : Disable captcha in new reply


Penicillin
05-26-2011, 08:15 PM
Hi,
Due to high spam threads, I enabled captcha in new thread, but it's also enabled in new reply.
I want to disable it in new reply, can I?

Thanks

kh99
05-28-2011, 04:02 PM
The permission setting is the same for new threads and replies, but you could create a new plugin using hook newreply_start and this code:

$vbulletin->options['hvcheck'] &= ~($vbulletin->bf_misc_hvcheck['post']);


to turn it off for replies.

(I tested this a little but not completely).