Popis
Invisible reCaptcha pro WordPress je mimořádně výkonný plugin, který integruje nový Invisible reCaptcha by Google do stránek WordPress.
Notice: As of version 1.3.0, this plugin is now maintained by @berrypress.
External service disclosure
This plugin is designed to integrate reCAPTCHA by Google into your site, which is an external third-party service used to implement security and fraud prevention measures. The plugin may communicate with the reCAPTCHA service via API and/or by loading assets on your site’s frontend, resulting in data transfer with the reCAPTCHA service when the site frontend is accessed and/or when reCAPTCHA validation is triggered by to user actions. In addition to authentication and operational data such as API keys and reCAPTCHA identifiers, the service may receive information from your and your users‘ browser and network, such as their IP address, user agent, etc.
Use of the reCAPTCHA service is subject to the Google Cloud Terms of Service, Service Specific Terms, Google Privacy Policy, and the Cloud Data Processing Addendum.
This plugin is not affiliated with or endorsed by Google.
Souhrn funkcí
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 komunita Invisible reCaptcha
– Ochrana přihlašovacího formuláře
– Ochrana registračního formuláře
BuddyPress Invisible reCaptcha
– Chraňte svůj registrační formulář BuddyPress pomocí pluginu Invisible reCaptcha
Kompatibilita
Na WP Multisite můžete aktivovat plugin celé síti, nebo jen na jednom webu.
How-To
Check out the Invisible reCAPTCHA v2 Guide: https://developers.google.com/recaptcha/docs/invisible
- Create a reCAPTCHA v2 site using the Invisible reCAPTCHA badge option: https://www.google.com/recaptcha/admin/create
- Copy the Site Key and Secret Key from the Google reCAPTCHA admin console.
- In WordPress, go to Settings > Invisible reCaptcha > Settings.
- Enter your Site Key and Secret Key.
- Save the settings.
- In the settings, choose which forms should be protected by reCAPTCHA.
- Visit a page containing a protected form and verify that the reCAPTCHA badge is displayed and that form submissions are working correctly.
Rozšíření Invisible reCaptcha
Zde je několik užitečných háčků, které vývojářům pomohou integrovat Invisible reCaptcha s jakýmkoli pluginem nebo vlastním formulářem
Akce
- google_invre_render_widget_action - renders the recaptcha widget
Filtry
- 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')
Příklady použití neviditelných háčků reCaptcha
-
Přidej Invisible reCaptcha do jakéhokoliv formuláře
Stačí zavolat
do_action('google_invre_render_widget_action');
kdekoliv před koncovým tagem formuláře. -
Ověřit požadavek na odeslání formuláře
$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;
}
Zobrazit všechny reCaptcha kódy jazyků
Poznámka: K aktivaci tohoto pluginu je zapotřebí PHP 7.0 nebo novější verze.
Recenze
Autoři
Invisible reCaptcha je otevřený software. Následující lidé přispěli k vývoji tohoto pluginu.
SpolupracovníciPlugin „Invisible reCaptcha“ byl přeložen do 15 jazyků. Děkujeme všem překladatelům za jejich pomoc.
Přeložte “Invisible reCaptcha” do svého jazyka.
Zajímá vás vývoj?
Prohledejte kód, podívejte se do SVN repozitáře, nebo se přihlaste k odběru protokolu vývoje pomocí RSS.
Přehled změn
1.3.1
- Removed inactive WooCommerce checkout protection code (commit details).
- Removed unused licensing and external module-loading infrastructure.
- Declared PHP 7.0 as the minimum supported PHP version.
- Updated WordPress compatibility metadata.
- Added a link to the Google Privacy Policy to the external service disclosure.
- Corrected the setup documentation to specify Invisible reCAPTCHA v2.
1.3.0
- PHP 8 compatibility
- Removed the custom CSS feature
1.2.3
- Fixed class not found issue Problem with AJAX after update
1.2.2
- Fixed the compatibility with WPML 4.x – the multilingual WordPress plugin
1.2.1
1.2
- Fixed Contact Form 7 issue Cannot contact reCAPTCHA. Check your connection and try again
- Improved Gravity Forms protection
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
- Added integration with Ultra Community Membership plugin
- Fixed Reset Password redirect issue
- Fixed Badge CSS not working for Login/Register page
1.0.6
- Fixed WooCommerce login and registration issue
- Přidat Invisible reCaptcha do BuddyPress
1.0.5
- Opraven problém s Contact Form 7, který nahlásil @silvercode
- Přidat Invisible reCaptcha do formulářů Gravity Forms
1.0.4
- Kompatibilní se sítí webů
- Network interface ready
- Opraveno varování PHP7
1.0.3
- Přidány háčky WordPressu pro integraci vlastních formulářů/pluginů
1.0.2
- Added Badge Position option
- Added Badge Custom CSS option
- Přidána možnost Jazyk
1.0.1
- Oprava upozornění na přísné standardy v PHP 5.4+
1.0
- První vydání
