Install worked OK but the actual Captcha form is only showing on the admin login page. I don't see the Captcha form on my comment form or Form 7 contact form. When attempting to submit, it does prompt for a Captcha answer. Could my problem be due to the template I'm using?
bergwiesel
Member
Posted 1 year ago #
Hi,
I had the same problem and fixed it by commenting out/deleting lines 121-125 & 129 in the plugin file as shown below:
// Add captcha into comments form
if( 1 == $cptch_options['cptch_comments_form'] ) {
global $wp_version;
// if( version_compare($wp_version,'3','>=') ) { // wp 3.0 +
// add_action( 'comment_form_after_fields', 'cptch_comment_form');
// add_action( 'comment_form_logged_in_after', 'cptch_comment_form');
// add_filter( 'preprocess_comment', 'cptch_comment_post' );
// } else {
// for WP before WP 3.0
add_action( 'comment_form', 'cptch_comment_form' );
add_filter( 'preprocess_comment', 'cptch_comment_post' );
// }
}
schaumann
Member
Posted 11 months ago #
I had the same issue and can confirm this solution works - thank you!