• Resolved jaysch

    (@jaysch)


    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?

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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' );
    //	}
    }

    I had the same issue and can confirm this solution works – thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Captcha Plugin’ is closed to new replies.