Omschrijving
Invisible reCaptcha for WordPress is an extremely powerful plugin which integrates the new Invisible reCaptcha by Google with your WordPress site.
Summary of features
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
Compatibility
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
Extending Invisible reCaptcha
Here are some useful hooks to help developers integrate Invisible reCaptcha with any plugin or custom form
Acties
- google_invre_render_widget_action - renders the recaptcha widget
Filters
- 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')
Voorbeelden voor het gebruik van Invisible reCaptcha hooks
-
Voeg Ontzichtbare reCaptcha toe aan je formulier
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
} -
Verander de badge/challenge taalcode
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;
}
Bekijk alle reCaptcha Taalcodes
Notificatie: Deze plugin vereist PHP 5.3 of hoger om geactiveerd te kunnen worden