integrating CAPTCHA
-
Hi again!
I am plagued with bot signups on my form and thought I’d install CAPTCHA. I’ve got the WP CAPTCHA plugin installed and I’ve got the code I need to embed into a custom form, but since I’m using NSU, I’m not sure where to put it. Can you help me out with that? Here’s the code:
if( function_exists( ‘cptch_display_captcha_custom’ ) ) { echo “<input type=’hidden’ name=’cntctfrm_contact_action’ value=’true’ />”; echo cptch_display_captcha_custom() } ;
If the form is HTML you should insert the line with the PHP tags:
<?php if( function_exists( ‘cptch_display_captcha_custom’ ) ) { echo “<input type=’hidden’ name=’cntctfrm_contact_action’ value=’true’ />”; echo cptch_display_captcha_custom(); } ?>Thanks!
Tracey
- The topic ‘integrating CAPTCHA’ is closed to new replies.