Version Description
- Add Contact form 7 integration instruction page link in settings page of this plugin.
Download this release
Release Info
Developer | shamim51 |
Plugin | Advanced noCaptcha & invisible Captcha |
Version | 6.1.2 |
Comparing to | |
See all releases |
Code changes from version 6.1.1 to 6.1.2
- admin/settings.php +1 -1
- advanced-nocaptcha-recaptcha.php +2 -2
- anr-captcha-class.php +1 -1
- readme.txt +5 -1
admin/settings.php
CHANGED
@@ -114,7 +114,7 @@ class ANR_Settings {
|
|
114 |
'bp_register' => __( 'BuddyPress register', 'advanced-nocaptcha-recaptcha' ),
|
115 |
'wc_checkout' => __( 'WooCommerce Checkout', 'advanced-nocaptcha-recaptcha' ),
|
116 |
),
|
117 |
-
'desc' => sprintf( __( 'For other forms see <a href="%s">
|
118 |
),
|
119 |
'error_message' => array(
|
120 |
'label' => __( 'Error Message', 'advanced-nocaptcha-recaptcha' ),
|
114 |
'bp_register' => __( 'BuddyPress register', 'advanced-nocaptcha-recaptcha' ),
|
115 |
'wc_checkout' => __( 'WooCommerce Checkout', 'advanced-nocaptcha-recaptcha' ),
|
116 |
),
|
117 |
+
'desc' => sprintf( __( 'For "Contact Form 7" you need to follow <a target="_blank" href="%1$s">this instruction</a>. For other forms see <a href="%2$s">this instruction</a>', 'advanced-nocaptcha-recaptcha' ), esc_url( 'https://www.shamimsplugins.com/docs/advanced-nocaptcha-recaptcha/getting-started-advanced-nocaptcha-recaptcha/implement-in-contact-form-7/' ), esc_url( network_admin_url( 'admin.php?page=anr-instruction' ) ) ),
|
118 |
),
|
119 |
'error_message' => array(
|
120 |
'label' => __( 'Error Message', 'advanced-nocaptcha-recaptcha' ),
|
advanced-nocaptcha-recaptcha.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Advanced noCaptcha & invisible Captcha
|
4 |
Plugin URI: https://www.shamimsplugins.com/contact-us/
|
5 |
Description: Show noCaptcha or invisible captcha in Comment Form, bbPress, BuddyPress, WooCommerce, CF7, Login, Register, Lost Password, Reset Password. Also can implement in any other form easily.
|
6 |
-
Version: 6.1.
|
7 |
Author: Shamim Hasan
|
8 |
Author URI: https://www.shamimsplugins.com/contact-us/
|
9 |
Text Domain: advanced-nocaptcha-recaptcha
|
@@ -42,7 +42,7 @@ class ANR {
|
|
42 |
}
|
43 |
|
44 |
private function constants() {
|
45 |
-
define( 'ANR_PLUGIN_VERSION', '6.1.
|
46 |
define( 'ANR_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
47 |
define( 'ANR_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
|
48 |
define( 'ANR_PLUGIN_FILE', __FILE__ );
|
3 |
Plugin Name: Advanced noCaptcha & invisible Captcha
|
4 |
Plugin URI: https://www.shamimsplugins.com/contact-us/
|
5 |
Description: Show noCaptcha or invisible captcha in Comment Form, bbPress, BuddyPress, WooCommerce, CF7, Login, Register, Lost Password, Reset Password. Also can implement in any other form easily.
|
6 |
+
Version: 6.1.2
|
7 |
Author: Shamim Hasan
|
8 |
Author URI: https://www.shamimsplugins.com/contact-us/
|
9 |
Text Domain: advanced-nocaptcha-recaptcha
|
42 |
}
|
43 |
|
44 |
private function constants() {
|
45 |
+
define( 'ANR_PLUGIN_VERSION', '6.1.2' );
|
46 |
define( 'ANR_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
47 |
define( 'ANR_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
|
48 |
define( 'ANR_PLUGIN_FILE', __FILE__ );
|
anr-captcha-class.php
CHANGED
@@ -84,7 +84,7 @@ if ( ! class_exists( 'anr_captcha_class' ) ) {
|
|
84 |
}
|
85 |
|
86 |
if ( function_exists( 'wpcf7_add_form_tag' ) ) {
|
87 |
-
if( class_exists( 'WPCF7' ) && WPCF7::get_option( 'recaptcha' ) && apply_filters( 'anr_remove_cf7_recaptcha',
|
88 |
//remove recaptcha keys from CF7 which will disable CF7 recaptcha
|
89 |
WPCF7::update_option( 'recaptcha', null );
|
90 |
}
|
84 |
}
|
85 |
|
86 |
if ( function_exists( 'wpcf7_add_form_tag' ) ) {
|
87 |
+
if( class_exists( 'WPCF7' ) && WPCF7::get_option( 'recaptcha' ) && apply_filters( 'anr_remove_cf7_recaptcha', false ) ) {
|
88 |
//remove recaptcha keys from CF7 which will disable CF7 recaptcha
|
89 |
WPCF7::update_option( 'recaptcha', null );
|
90 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: recaptcha,nocaptcha,invisible,bot,spam
|
|
4 |
Donate link: https://www.shamimsplugins.com/products/advanced-nocaptcha-and-invisible-captcha-pro/
|
5 |
Requires at least: 4.4
|
6 |
Tested up to: 5.5
|
7 |
-
Stable tag: 6.1.
|
8 |
Requires PHP: 5.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -91,6 +91,10 @@ You can access your file via FTP or file manager and rename "advanced-nocaptcha-
|
|
91 |
|
92 |
== Changelog ==
|
93 |
|
|
|
|
|
|
|
|
|
94 |
= 6.1.1 =
|
95 |
|
96 |
* recaptcha domain can now be changed from settings.
|
4 |
Donate link: https://www.shamimsplugins.com/products/advanced-nocaptcha-and-invisible-captcha-pro/
|
5 |
Requires at least: 4.4
|
6 |
Tested up to: 5.5
|
7 |
+
Stable tag: 6.1.2
|
8 |
Requires PHP: 5.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
= 6.1.2 =
|
95 |
+
|
96 |
+
* Add Contact form 7 integration instruction page link in settings page of this plugin.
|
97 |
+
|
98 |
= 6.1.1 =
|
99 |
|
100 |
* recaptcha domain can now be changed from settings.
|