Title: Move Captcha
Last modified: March 23, 2018

---

# Move Captcha

 *  Resolved [comsud](https://wordpress.org/support/users/comsud/)
 * (@comsud)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/move-captcha/)
 * Ho there,
 * is there an esay way to move the captcha where i wan’t, cuz by default it’s displaying
   before the submit button.
 * Thx

Viewing 1 replies (of 1 total)

 *  Plugin Author [Jeff Farthing](https://wordpress.org/support/users/jfarthing84/)
 * (@jfarthing84)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/move-captcha/#post-10109290)
 * You could remove the callback from the `register_form` hook, edit the register
   form to add your own action below the button and then attach the reCAPTCHA callback
   to that action instead. Something like this:
 *     ```
       function my_custom_recaptcha_position() {
           // Get the reCAPTCHA module instance
           $tml_recaptcha = Theme_My_Login_Recaptcha::get_object();
   
           // Remove the callback from the default hook
           remove_action( 'register_form', array( $tml_recaptcha, 'recaptcha_display' ) );
   
           // Add the callback to your custom hook added to the registration form
           add_action( 'register_form_recaptcha', array( $tml_recaptcha, 'recaptcha_display' ) );
       }
       add_action( 'init', 'my_custom_recaptcha_position' );
       ```
   
 * Then, copy the `register-form.php` into your current theme’s directory and add
   the following where you want the reCAPTCHA to display:
 *     ```
       <?php do_action( 'register_form_recpatcha' ); ?>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Move Captcha’ is closed to new replies.

 * ![](https://ps.w.org/theme-my-login/assets/icon-256x256.png?rev=1891232)
 * [Theme My Login](https://wordpress.org/plugins/theme-my-login/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/theme-my-login/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/theme-my-login/)
 * [Active Topics](https://wordpress.org/support/plugin/theme-my-login/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/theme-my-login/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/theme-my-login/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Jeff Farthing](https://wordpress.org/support/users/jfarthing84/)
 * Last activity: [8 years, 3 months ago](https://wordpress.org/support/topic/move-captcha/#post-10109290)
 * Status: resolved