Title: Captcha Plugin
Last modified: August 19, 2016

---

# Captcha Plugin

 *  Resolved [jaysch](https://wordpress.org/support/users/jaysch/)
 * (@jaysch)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/captcha-plugin/)
 * 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)

 *  [bergwiesel](https://wordpress.org/support/users/bergwiesel/)
 * (@bergwiesel)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/captcha-plugin/#post-2055440)
 * 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](https://wordpress.org/support/users/schaumann/)
 * (@schaumann)
 * [14 years, 10 months ago](https://wordpress.org/support/topic/captcha-plugin/#post-2055545)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/captcha_92b6c9.svg)
 * [Captcha](https://wordpress.org/plugins/captcha/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/captcha/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/captcha/)
 * [Active Topics](https://wordpress.org/support/plugin/captcha/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/captcha/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/captcha/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [schaumann](https://wordpress.org/support/users/schaumann/)
 * Last activity: [14 years, 10 months ago](https://wordpress.org/support/topic/captcha-plugin/#post-2055545)
 * Status: resolved