Skip to content

Commit 4243507

Browse files
author
hCaptcha GHA
committed
Fix readme.txt.
1 parent f87a977 commit 4243507

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

readme.txt

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ hCaptcha for WP [makes security easy](https://www.hcaptcha.com/integration-hcapt
3434
* **No Challenge Modes:** 99.9% passive and passive modes in Pro and Enterprise versions reduce user friction.
3535
* **Logged-in Users:** Optionally turn off hCaptcha for logged-in users.
3636
* **Delayed API Loading:** Load the hCaptcha API instantly or on user interaction for zero page load impact.
37-
* **White List IPs:** Whitelist certain IPs to skip hCaptcha verification.
37+
* **Allowlist IPs:** Allowlist certain IPs to skip hCaptcha verification.
3838
* **Multisite Support:** Sync hCaptcha settings across a Multisite Network.
3939

4040
**Customization**
@@ -58,7 +58,7 @@ hCaptcha for WP [makes security easy](https://www.hcaptcha.com/integration-hcapt
5858

5959
The purpose of a CAPTCHA is to distinguish between people and machines via a challenge-response test, and thus increase the cost of spamming or otherwise abusing websites by keeping out bots.
6060

61-
To use this plugin, install it and enter your sitekey and secret in the Settings -> hCaptcha menu after signing up on hCaptcha.com.
61+
To use this plugin, install it and enter your sitekey and secret in the Settings hCaptcha menu after signing up on hCaptcha.com.
6262

6363
[hCaptcha Free](https://www.hcaptcha.com/) lets websites block bots and other forms of abuse via humanity challenges.
6464

@@ -87,8 +87,8 @@ Sign up at [hCaptcha.com](https://www.hcaptcha.com/) to get your sitekey and sec
8787

8888
1. Install hCaptcha either via the WordPress.org plugin repository (best) or by uploading the files to your server. ([Upload instructions](https://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/))
8989
2. Activate the hCaptcha plugin on the 'Plugins' admin page
90-
3. Enter your site key and secret on the Settings->hCaptcha->General page
91-
4. Enable desired Integrations on the Settings->hCaptcha->Integrations page
90+
3. Enter your site key and secret on the SettingshCaptchaGeneral page
91+
4. Enable desired Integrations on the SettingshCaptchaIntegrations page
9292

9393
== Frequently Asked Questions ==
9494

@@ -114,7 +114,7 @@ Full list of arguments:
114114
[hcaptcha action="my_hcap_action" name="my_hcap_name" auto="true|false" ajax="true|false" force="true|false" theme="light|dark|auto" size="normal|compact|invisible"]
115115
`
116116

117-
The shortcode adds not only the hCaptcha div to the form, but also a nonce field. You can set your own nonce action and name. For this, use arguments in the shortcode:
117+
The shortcode adds not only the hCaptcha div to the form but also a nonce field. You can set your own nonce action and name. For this, use arguments in the shortcode:
118118

119119
`
120120
[hcaptcha action="my_hcap_action" name="my_hcap_name"]
@@ -397,7 +397,7 @@ function hcap_protect_form_filter( $value, $source, $form_id ) {
397397
return $value;
398398
}
399399

400-
// Turn off protection for Gravity form with id = 1.
400+
// Turn off protection for a Gravity form with id = 1.
401401
return false;
402402
}
403403

@@ -448,36 +448,36 @@ function my_hcap_language( $language ) {
448448
add_filter( 'hcap_language', 'my_hcap_language' );
449449
`
450450

451-
= How to whitelist certain IPs =
451+
= How to allowlist certain IPs =
452452

453453
You can use the following filter. It should be added to your plugin's (or mu-plugin's) main file. This filter won't work being added to a theme's functions.php file.
454454

455455
`
456456
/**
457-
* Filter user IP to check if it is whitelisted.
458-
* For whitelisted IPs, hCaptcha will not be shown.
457+
* Filter user IP to check if it is allowlisted.
458+
* For allowlisted IPs, hCaptcha will not be shown.
459459
*
460-
* @param bool $whitelisted Whether IP is whitelisted.
460+
* @param bool $allowlisted Whether IP is allowlisted.
461461
* @param string $ip IP.
462462
*
463463
* @return bool
464464
*/
465-
function my_hcap_whitelist_ip( $whitelisted, $ip ) {
465+
function my_hcap_allowlist_ip( $allowlisted, $ip ) {
466466

467-
// Whitelist local IPs.
467+
// Allowlist local IPs.
468468
if ( false === $ip ) {
469469
return true;
470470
}
471471

472-
// Whitelist some other IPs.
472+
// Allowlist some other IPs.
473473
if ( '1.1.1.1' === $ip ) {
474474
return true;
475475
}
476476

477-
return $whitelisted;
477+
return $allowlisted;
478478
}
479479

480-
add_filter( 'hcap_whitelist_ip', 'my_hcap_whitelist_ip', 10, 2 );
480+
add_filter( 'hcap_whitelist_ip', 'my_hcap_allowlist_ip', 10, 2 );
481481
`
482482

483483
= How do I change the appearance of the admin menu? =
@@ -615,7 +615,7 @@ If this feature is enabled, anonymized statistics on your plugin configuration,
615615
For feature requests and issue reports, please
616616
[open a pull request](https://github.com/hCaptcha/hcaptcha-wordpress-plugin).
617617

618-
We also suggest emailing the authors of plugins you'd like to support hCaptcha: it will usually take them only an hour or two to add native support. This will simplify your use of hCaptcha, and is the best solution in the long run.
618+
We also suggest emailing the authors of plugins you'd like to support hCaptcha: it will usually take them only an hour or two to add native support. This will simplify your use of hCaptcha and is the best solution in the long run.
619619

620620
You may use native hCaptcha support if available for your plugin. Please check with your plugin author if native support is not yet available.
621621

@@ -640,7 +640,7 @@ Instructions for popular native integrations are below:
640640
* Added deletion of events on the Forms page.
641641
* Added deletion of events on the Events page.
642642
* Improved error messaging for hCaptcha verification.
643-
* Fixed IP detection in the WordPress core via filter. Now syncs with hCaptcha event information when IP collection is activated.
643+
* Fixed IP detection in the WordPress core via filter. Now syncs with hCaptcha event information when an IP collection is activated.
644644
* Fixed fatal error with the WPForms plugin in rare cases.
645645
* Fixed error message at the first entry to the login page when Hide Login Errors in on.
646646
* Fixed scrolling to the message on the General page.
@@ -656,14 +656,14 @@ Instructions for popular native integrations are below:
656656
* Added compatibility with Ninja Forms v3.8.22.
657657
* Added the ability to install plugins and themes from the Integrations page.
658658
* Added ability to hide the login errors.
659-
* Added anonymous collection of IP and User Agent data in locally stored analytics to simplify GDPR compliance.
659+
* Added an anonymous collection of IP and User Agent data in locally stored analytics to simplify GDPR compliance.
660660
* Added extended info about IP address on the Events page on hover.
661661
* Added selecting any page on Forms and Events.
662662
* Optimized Events page performance for large databases with millions of entries.
663663
* Fixed layout of a modern Jetpack form in outlined and animated styles.
664664
* Fixed fatal error as a consequence of a bug in the TutorLMS.
665665
* Fixed help text box layout on the General page.
666-
* Fixed dismiss and reset Notifications actions.
666+
* Fixed the dismiss and reset Notifications actions.
667667
* Fixed duplication of entries in the Events table.
668668

669669
= 4.8.0 =
@@ -675,7 +675,7 @@ Instructions for popular native integrations are below:
675675
* Added theme argument to the [hcaptcha] shortcode.
676676
* Added 'theme' badge to themes on the Integrations page.
677677
* Updated hCaptcha API error codes.
678-
* Fixed processing of Divi form with diacritical marks.
678+
* Fixed processing of a Divi form with diacritical marks.
679679
* Fixed deactivating of all themes by Ctrl+Click on the Integrations page.
680680
* Fixed theme name display upon activation.
681681
* Fixed display of the hCaptcha shortcode with individual parameters.
@@ -696,7 +696,7 @@ Instructions for popular native integrations are below:
696696
* Added compatibility with Contact Form 7 v6.0.
697697
* Added compatibility with Akismet tag in Contact Form 7.
698698
* Added compatibility with Elementor Element Caching.
699-
* Added activation and deactivation of plugins network wide if hCaptcha is set network wide.
699+
* Added activation and deactivation of plugin network wide if hCaptcha is set network wide.
700700
* Added ability to use shortcode in the Jetpack Classic form.
701701
* Added ability to use shortcode in the Mailchimp for WP form.
702702
* Fixed race condition when loading hCaptcha API.
@@ -736,15 +736,15 @@ Instructions for popular native integrations are below:
736736
* Improved UX of the Integrations page.
737737
* Fixed error messaging when there are several Jetpack forms on the same page.
738738
* Fixed unconditional forcing hCaptcha in Jetpack forms.
739-
* Fixed appearance of Beaver Builder editor with "Turn Off When Logged In" setting.
740-
* Fixed appearance of Contact Form 7 editor with "Turn Off When Logged In" setting.
741-
* Fixed appearance of Essential Addons editor with "Turn Off When Logged In" setting.
742-
* Fixed appearance of Gravity Forms editor with "Turn Off When Logged In" setting.
743-
* Fixed appearance of Fluent Forms editor with "Turn Off When Logged In" setting.
744-
* Fixed appearance of Forminator editor with "Turn Off When Logged In" setting.
745-
* Fixed appearance of Formidable Forms with "Turn Off When Logged In" setting.
746-
* Fixed appearance of Ninja Forms editor with "Turn Off When Logged In" setting.
747-
* Fixed appearance of WPForms editor with "Turn Off When Logged In" setting.
739+
* Fixed the appearance of Beaver Builder editor with "Turn Off When Logged In" setting.
740+
* Fixed the appearance of Contact Form 7 editor with "Turn Off When Logged In" setting.
741+
* Fixed the appearance of Essential Addons editor with "Turn Off When Logged In" setting.
742+
* Fixed the appearance of Gravity Forms editor with "Turn Off When Logged In" setting.
743+
* Fixed the appearance of Fluent Forms editor with "Turn Off When Logged In" setting.
744+
* Fixed the appearance of Forminator editor with "Turn Off When Logged In" setting.
745+
* Fixed the appearance of Formidable Forms with "Turn Off When Logged In" setting.
746+
* Fixed the appearance of Ninja Forms editor with "Turn Off When Logged In" setting.
747+
* Fixed the appearance of WPForms editor with "Turn Off When Logged In" setting.
748748
* Fixed fatal error on Gravity Forms Entries page.
749749
* Fixed Elementor preview.
750750
* Fixed Ninja Forms preview.
@@ -908,7 +908,7 @@ Instructions for popular native integrations are below:
908908
* Tested with WooCommerce 8.5.
909909
* Added optional Enterprise settings.
910910
* Fixed improper display of the "rate plugin" message on options.php.
911-
* Fixed colored border of hCaptcha challenge arrow.
911+
* Fixed the colored border of hCaptcha challenge arrow.
912912

913913
= 3.6.0 =
914914
* Tested with WooCommerce 8.4.
@@ -991,7 +991,7 @@ Instructions for popular native integrations are below:
991991
* Fixed compatibility with Rename wp-admin Login.
992992

993993
= 3.3.0 =
994-
* Color scheme in admin UI has been updated.
994+
* The color scheme in the admin UI has been updated.
995995
* Added compatibility with Passster.
996996
* Added compatibility with Theme My Login.
997997
* Added compatibility with Gravity Perks Nested Forms.

0 commit comments

Comments
 (0)