Title: ForestD's Replies | WordPress.org

---

# ForestD

  [  ](https://wordpress.org/support/users/forestd/)

 *   [Profile](https://wordpress.org/support/users/forestd/)
 *   [Topics Started](https://wordpress.org/support/users/forestd/topics/)
 *   [Replies Created](https://wordpress.org/support/users/forestd/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/forestd/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/forestd/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/forestd/engagements/)
 *   [Favorites](https://wordpress.org/support/users/forestd/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Invisible reCaptcha for WordPress] MemberPress Integration](https://wordpress.org/support/topic/memberpress-integration-2/)
 *  Thread Starter [ForestD](https://wordpress.org/support/users/forestd/)
 * (@forestd)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/memberpress-integration-2/#post-8992028)
 * Thanks Paul!
 * I also added the login form pages:
 *     ```
       function add_invisible_recaptcha_mepr_login($membership_ID) {
         ?>
           <div class="mp-form-row mepr_invisible_recaptcha">
             <?php do_action('google_invre_render_widget_action'); ?>
           </div>
         <?php
       }
       add_filter('mepr-login-form-before-submit', 'add_invisible_recaptcha_mepr_login');
   
       function validate_invisible_recaptcha_mepr_login($errors) {
         $is_valid = apply_filters('google_invre_is_valid_request_filter', true);
         if(!$is_valid) {
           $errors[] = "Failed Captcha";
         }
         return $errors;
       }
       add_filter('mepr-validate-login', 'validate_invisible_recaptcha_mepr_login');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mailing Group Listserv] HTML not working in new user emails](https://wordpress.org/support/topic/html-not-working-in-new-user-emails/)
 *  Thread Starter [ForestD](https://wordpress.org/support/users/forestd/)
 * (@forestd)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/html-not-working-in-new-user-emails/#post-8979449)
 * One more thing found is that the WP admin receives two duplicate emails for new
   users, one that the HTML is working on and one that it is not.
 * Also can we change or add a reply-to option to only send a reply to the single
   email address of the original sender instead of sending to the complete list?

Viewing 2 replies - 1 through 2 (of 2 total)