Title: Robert's Replies | WordPress.org

---

# Robert

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Preview E-mails for WooCommerce] Support for namespaced email handler classes](https://wordpress.org/support/topic/support-for-namespaced-email-handler-classes/)
 *  Thread Starter [Robert](https://wordpress.org/support/users/robertgres/)
 * (@robertgres)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/support-for-namespaced-email-handler-classes/#post-15046330)
 * Hi [@digamberpradhan](https://wordpress.org/support/users/digamberpradhan/)
 * Unfortunately, I don’t see any changes in that particular part of code, and continue
   to get Fatal Errors when trying to preview custom e-mails.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WebP Express] “Path is outside resolved document root” when it’s symlinked](https://wordpress.org/support/topic/path-is-outside-resolved-document-root-when-its-symlinked/)
 *  Thread Starter [Robert](https://wordpress.org/support/users/robertgres/)
 * (@robertgres)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/path-is-outside-resolved-document-root-when-its-symlinked/#post-13237996)
 * Yes, it works as expected now.
 * Thank you for the fix!
 * btw I believe you’ve credited wrong person in changelog 🙂 props to @spiderPan
   on github
    -  This reply was modified 5 years, 9 months ago by [Robert](https://wordpress.org/support/users/robertgres/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 reCAPTCHA Extension] reCapture Missing from contact form](https://wordpress.org/support/topic/recapture-missing-from-contact-form/)
 *  [Robert](https://wordpress.org/support/users/robertgres/)
 * (@robertgres)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/recapture-missing-from-contact-form/#post-6795889)
 * I’ve had same problem and found that CF7 didn’t properly attach reCaptcha’s API.
 * You’ll need to insert the following inside template with form in it, or globally:
   (
   insert before call for wp_head())
 *     ```
       wp_register_script('recaptcha_api', 'https://www.google.com/recaptcha/api.js');
       wp_enqueue_script('recaptcha_api');
       ```
   
 * …or just hardcode script into site header (maybe even footer)
 * Also I don’t like that after message is sent, anchor link is still present in
   url (like contact/#wpcf7-f326-p41-o1), which resends message on every page reload
   and browser always ask “are you sure you want to resend your data?”.
    Found nice
   solution for that: (insert this js somewere inside page with contact form)
 *     ```
       var reg = window.location.href;
       reg = reg.replace(/#wpcf7.+$/i, "");
       window.history.pushState('Some String','Title', reg);
       ```
   

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