Dieses Plugin ist nicht mit den jüngsten 3 Hauptversionen von WordPress getestet worden. Es wird möglicherweise nicht mehr gewartet oder unterstützt und kann Kompatibilitätsprobleme haben, wenn es mit neueren Versionen von WordPress verwendet wird.

Invisible reCaptcha for WordPress

Beschreibung

Invisible reCaptcha for WordPress is an extremely powerful plugin which integrates the new Invisible reCaptcha by Google with your WordPress site.

Zusammenfassung der Funktionen

WordPress Invisible reCaptcha

- Login form protection - annihilates Brute Force attacks
- Registration form protection
- Comments form protection
- Forgot Password form protection

WooCommerce Invisible reCaptcha

- Login form protection
- Registration form protection
- Product Review form protection
- Lost Password form protection
- Reset Password form protection

Contact Form 7 Invisible reCaptcha
– Protect your Contact Form 7 forms with Invisible reCaptcha

Gravity Forms Invisible reCaptcha
– Protect your Gravity Forms with Invisible reCaptcha

Ultra Community Invisible reCaptcha
– Login form protection
– Registration form protection

BuddyPress Invisible reCaptcha
– Protect your BuddyPress registration form with Invisible reCaptcha

Kompatibilität

On a WP Multisite you can either activate the plugin network wide or on a single site.

How-To and Troubleshooting

Check out our Invisible reCaptcha for WordPress Support Forum

Invisible reCaptcha erweitern

Here are some useful hooks to help developers integrate Invisible reCaptcha with any plugin or custom form

Aktionen

- google_invre_render_widget_action - renders the recaptcha widget

Filter

- google_invre_is_valid_request_filter   - used to check if Google approved the request (returns bool true/false)
- google_invre_widget_output_html_filter - used to change the recaptcha widget output
- google_invre_language_code_filter      - used to change the badge/challenge language code
- google_invre_badge_position_filter     - used to change the badge position (possible returning values are: 'bottomright', 'bottomleft', 'inline')

Examples of using Invisible reCaptcha hooks

  • Add Invisible reCaptcha into any form

    Just call
    do_action(‚google_invre_render_widget_action‘);
    anywhere before form closing tag

  • Validate form post request

    $is_valid = apply_filters(‚google_invre_is_valid_request_filter‘, true);
    if( ! $is_valid )
    {
    // handle error here
    }
    else
    {
    // continue with your logic
    }

  • Change the badge/challenge language code

    add_filter( ‚google_invre_language_code_filter‘, ‚myprefix_change_recaptcha_language‘ );
    function myprefix_change_recaptcha_language($language_code){
    $language_code = ‚fr‘; // French
    return $language_code;
    }

See all reCaptcha Language Codes

Note: This plugin requires PHP 5.3 or higher to be activated.

Rezensionen

31. Oktober 2025
Our site was created in 2020 and it’s been a while since it was maintained. Now when we login, the reCaptcha appears but with no field to enter or mark the captcha in, thus causing failed logins.
21. Juni 2023
<p>We use v2 recaptcha code + this plugin on a „all“ of our sites with gravity forms. Unfortunately we have GF on the home page (for capturing leads) where this loads and it adds a bunch of bloat (granted from google). It would be nice if there was a way to optimize this so it didn’t load an additional 20-25 requests. </p> <p>Pros: drops spam considerably with gravity forms. Easy to implement.<br> Cons: slows your pagespeed scores down, can’t defer JS otherwise it may not work. Adds about 20 or more resources from google just to enable recaptcha v2.</p> <!– wp:paragraph –> <p>UPDATE – invisible captcha has not worked for a very long time. I don’t believe it’s a plugin issue, it’s just the captcha service does not really work anymore. Bots have figured a way around this.</p> <!– /wp:paragraph –>
23. März 2021
Thanks to this plugin not having been tested with the last 3 major WordPress updates, it managed to break my CF7 forms and Google Analytics form submission tracking from one day to the other. It looks like this plugin was abandoned, so I strongly advise against installing it. Unreliable!
Alle 133 Rezensionen lesen

Mitwirkende und Entwickler

„Invisible reCaptcha for WordPress“ ist Open-Source-Software. Folgende Menschen haben an diesem Plugin mitgewirkt:

Mitwirkende

„Invisible reCaptcha for WordPress“ wurde in 14 Sprachen übersetzt. Danke an die Übersetzer für ihre Mitwirkung.

Übersetze „Invisible reCaptcha for WordPress“ in deine Sprache.

Interessiert an der Entwicklung?

Durchstöbere den Code, sieh dir das SVN Repository an oder abonniere das Entwicklungsprotokoll per RSS.

Änderungsprotokoll

1.2.3

1.2.2

  • Fixed the compatibility with WPML 4.x – the multilingual WordPress plugin

1.2.1

1.2

1.1

  • Fixed PHP wrong Namespace issue
  • Fixed PHP warning when contact forms settings were saved for the first time
  • Moved Plugin Menu to Settings
  • Fixed PHP warning when contact forms settings were saved for the first time
  • Moved Plugin Menu to Settings

1.0.8

1.0.6

  • Fixed WooCommerce login and registration issue
  • Added Invisible reCaptcha for BuddyPress

1.0.5

  • Fixed Contact Form 7 issue reported by @silvercode
  • Added Invisible reCaptcha for Gravity Forms

1.0.4

  • Multisite-kompatibel
  • Network interface ready
  • PHP7-Warnung behoben

1.0.3

  • Added WordPress hooks for custom forms/plugins integrations

1.0.2

  • Added Badge Position option
  • Added Badge Custom CSS option
  • Sprachenoption hinzugefügt

1.0.1

  • Fixed the Strict Standards Warning on PHP 5.4+

1.0

  • Erstveröffentlichung