Version Description
- 18.08.2021 =
- Bugfix : 'use strict' was added.
- Pro : The compatibility with Caldera Member has been added.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Captcha (reCAPTCHA) by BestWebSoft |
Version | 1.64 |
Comparing to | |
See all releases |
Code changes from version 1.63 to 1.64
- bws_menu/js/bws_menu.js +1 -0
- bws_menu/js/bws_tooltip.js +4 -0
- bws_menu/js/general_script.js +2 -0
- bws_menu/js/shortcode-button.js +1 -0
- google-captcha.php +1 -1
- includes/pro_banners.php +4 -2
- languages/google-captcha-ru_RU.po +8 -8
- languages/google-captcha-uk.po +8 -8
- readme.txt +14 -2
bws_menu/js/bws_menu.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
(function($) {
|
|
|
2 |
$(document).ready( function() {
|
3 |
var product = $( '.bws_product_box' ),
|
4 |
max = 0;
|
1 |
(function($) {
|
2 |
+
"use strict";
|
3 |
$(document).ready( function() {
|
4 |
var product = $( '.bws_product_box' ),
|
5 |
max = 0;
|
bws_menu/js/bws_tooltip.js
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
*
|
4 |
*/
|
5 |
(function($) {
|
|
|
6 |
$(document).ready( function() {
|
7 |
jQuery.bwsTooltip = function( pointer_options ) {
|
8 |
var pointer_buttons = pointer_options['buttons'];
|
@@ -51,6 +52,9 @@
|
|
51 |
};
|
52 |
}
|
53 |
/* adjust position of pointer */
|
|
|
|
|
|
|
54 |
topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
|
55 |
leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
|
56 |
if ( pointer_options['position']['align'] == 'left' ) {
|
3 |
*
|
4 |
*/
|
5 |
(function($) {
|
6 |
+
"use strict";
|
7 |
$(document).ready( function() {
|
8 |
jQuery.bwsTooltip = function( pointer_options ) {
|
9 |
var pointer_buttons = pointer_options['buttons'];
|
52 |
};
|
53 |
}
|
54 |
/* adjust position of pointer */
|
55 |
+
var topPos,
|
56 |
+
leftPos,
|
57 |
+
pointerZindex;
|
58 |
topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
|
59 |
leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
|
60 |
if ( pointer_options['position']['align'] == 'left' ) {
|
bws_menu/js/general_script.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
function bws_show_settings_notice() {
|
|
|
2 |
(function($) {
|
3 |
$( '.updated.fade:not(.bws_visible), .error:not(.bws_visible)' ).css( 'display', 'none' );
|
4 |
$( '#bws_save_settings_notice' ).css( 'display', 'block' );
|
@@ -6,6 +7,7 @@ function bws_show_settings_notice() {
|
|
6 |
}
|
7 |
|
8 |
(function($) {
|
|
|
9 |
$( document ).ready( function() {
|
10 |
/**
|
11 |
* add notice about changing on the settings page
|
1 |
function bws_show_settings_notice() {
|
2 |
+
"use strict";
|
3 |
(function($) {
|
4 |
$( '.updated.fade:not(.bws_visible), .error:not(.bws_visible)' ).css( 'display', 'none' );
|
5 |
$( '#bws_save_settings_notice' ).css( 'display', 'block' );
|
7 |
}
|
8 |
|
9 |
(function($) {
|
10 |
+
"use strict";
|
11 |
$( document ).ready( function() {
|
12 |
/**
|
13 |
* add notice about changing on the settings page
|
bws_menu/js/shortcode-button.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
(function($) {
|
|
|
2 |
if ( typeof bws_shortcode_button != 'undefined' ) {
|
3 |
var win;
|
4 |
|
1 |
(function($) {
|
2 |
+
"use strict";
|
3 |
if ( typeof bws_shortcode_button != 'undefined' ) {
|
4 |
var win;
|
5 |
|
google-captcha.php
CHANGED
@@ -6,7 +6,7 @@ Description: Protect WordPress website forms from spam entries with Google Captc
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-captcha
|
8 |
Domain Path: /languages
|
9 |
-
Version: 1.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv3 or later
|
12 |
*/
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-captcha
|
8 |
Domain Path: /languages
|
9 |
+
Version: 1.64
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv3 or later
|
12 |
*/
|
includes/pro_banners.php
CHANGED
@@ -73,7 +73,8 @@ if ( ! function_exists( 'gglcptch_supported_plugins_banner' ) ) {
|
|
73 |
'wpforms' => array( 'form_name' => __( 'WPForms', 'google-captcha' ) ),
|
74 |
'ultimate_member_login' => array( 'form_name' => __( 'Ultimate Member Login form', 'google-captcha' ) ),
|
75 |
'ultimate_member_register' => array( 'form_name' => __( 'Ultimate Member Registration form', 'google-captcha' ) ),
|
76 |
-
'ultimate_member_profile' => array( 'form_name' => __( 'Ultimate Member Profile form', 'google-captcha' ) )
|
|
|
77 |
);
|
78 |
$pro_sections = array(
|
79 |
'external' => array(
|
@@ -86,7 +87,8 @@ if ( ! function_exists( 'gglcptch_supported_plugins_banner' ) ) {
|
|
86 |
'sbscrbr',
|
87 |
'mailchimp',
|
88 |
'ninja_form',
|
89 |
-
'wpforms'
|
|
|
90 |
)
|
91 |
),
|
92 |
'woocommerce' => array(
|
73 |
'wpforms' => array( 'form_name' => __( 'WPForms', 'google-captcha' ) ),
|
74 |
'ultimate_member_login' => array( 'form_name' => __( 'Ultimate Member Login form', 'google-captcha' ) ),
|
75 |
'ultimate_member_register' => array( 'form_name' => __( 'Ultimate Member Registration form', 'google-captcha' ) ),
|
76 |
+
'ultimate_member_profile' => array( 'form_name' => __( 'Ultimate Member Profile form', 'google-captcha' ) ),
|
77 |
+
'caldera_forms' => array( 'form_name' => 'Caldera Forms' )
|
78 |
);
|
79 |
$pro_sections = array(
|
80 |
'external' => array(
|
87 |
'sbscrbr',
|
88 |
'mailchimp',
|
89 |
'ninja_form',
|
90 |
+
'wpforms',
|
91 |
+
'caldera_forms'
|
92 |
)
|
93 |
),
|
94 |
'woocommerce' => array(
|
languages/google-captcha-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: reCaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2021-07-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
@@ -467,7 +467,7 @@ msgstr "Testimonials"
|
|
467 |
msgid "WordPress default"
|
468 |
msgstr "Стандартных форм WordPress"
|
469 |
|
470 |
-
#: includes/forms.php:47 includes/pro_banners.php:
|
471 |
msgid "External Plugins"
|
472 |
msgstr "Внешние плагины"
|
473 |
|
@@ -611,15 +611,15 @@ msgstr "Форма регистрации плагина Ultimate Member"
|
|
611 |
msgid "Ultimate Member Profile form"
|
612 |
msgstr "Форма профиля плагина Ultimate Member"
|
613 |
|
614 |
-
#: includes/pro_banners.php:
|
615 |
msgid "Language"
|
616 |
msgstr "Язык"
|
617 |
|
618 |
-
#: includes/pro_banners.php:
|
619 |
msgid "Multilanguage"
|
620 |
msgstr "Multilanguage"
|
621 |
|
622 |
-
#: includes/pro_banners.php:
|
623 |
msgid ""
|
624 |
"Enable to switch language automatically on multilingual website using the "
|
625 |
"Multilanguage plugin."
|
@@ -627,15 +627,15 @@ msgstr ""
|
|
627 |
"Включить, чтобы переключить язык автоматически на многоязычном сайте, "
|
628 |
"используя плагин Multilanguage."
|
629 |
|
630 |
-
#: includes/pro_banners.php:
|
631 |
msgid "Size"
|
632 |
msgstr "Размер"
|
633 |
|
634 |
-
#: includes/pro_banners.php:
|
635 |
msgid "Normal"
|
636 |
msgstr "Нормальный"
|
637 |
|
638 |
-
#: includes/pro_banners.php:
|
639 |
msgid "Compact"
|
640 |
msgstr "Компактный"
|
641 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: reCaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2021-07-30 15:38+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
467 |
msgid "WordPress default"
|
468 |
msgstr "Стандартных форм WordPress"
|
469 |
|
470 |
+
#: includes/forms.php:47 includes/pro_banners.php:81
|
471 |
msgid "External Plugins"
|
472 |
msgstr "Внешние плагины"
|
473 |
|
611 |
msgid "Ultimate Member Profile form"
|
612 |
msgstr "Форма профиля плагина Ultimate Member"
|
613 |
|
614 |
+
#: includes/pro_banners.php:183
|
615 |
msgid "Language"
|
616 |
msgstr "Язык"
|
617 |
|
618 |
+
#: includes/pro_banners.php:191
|
619 |
msgid "Multilanguage"
|
620 |
msgstr "Multilanguage"
|
621 |
|
622 |
+
#: includes/pro_banners.php:194
|
623 |
msgid ""
|
624 |
"Enable to switch language automatically on multilingual website using the "
|
625 |
"Multilanguage plugin."
|
627 |
"Включить, чтобы переключить язык автоматически на многоязычном сайте, "
|
628 |
"используя плагин Multilanguage."
|
629 |
|
630 |
+
#: includes/pro_banners.php:206
|
631 |
msgid "Size"
|
632 |
msgstr "Размер"
|
633 |
|
634 |
+
#: includes/pro_banners.php:210
|
635 |
msgid "Normal"
|
636 |
msgstr "Нормальный"
|
637 |
|
638 |
+
#: includes/pro_banners.php:211
|
639 |
msgid "Compact"
|
640 |
msgstr "Компактный"
|
641 |
|
languages/google-captcha-uk.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: reCaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2021-07-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
@@ -467,7 +467,7 @@ msgstr "Testimonials"
|
|
467 |
msgid "WordPress default"
|
468 |
msgstr "Стандартних форм WordPress"
|
469 |
|
470 |
-
#: includes/forms.php:47 includes/pro_banners.php:
|
471 |
msgid "External Plugins"
|
472 |
msgstr "Зовнішні плагіни"
|
473 |
|
@@ -611,15 +611,15 @@ msgstr "Форма реєстрації плагіна Ultimate Member"
|
|
611 |
msgid "Ultimate Member Profile form"
|
612 |
msgstr "Форма профілю плагіна Ultimate Member"
|
613 |
|
614 |
-
#: includes/pro_banners.php:
|
615 |
msgid "Language"
|
616 |
msgstr "Мова"
|
617 |
|
618 |
-
#: includes/pro_banners.php:
|
619 |
msgid "Multilanguage"
|
620 |
msgstr "Multilanguage"
|
621 |
|
622 |
-
#: includes/pro_banners.php:
|
623 |
msgid ""
|
624 |
"Enable to switch language automatically on multilingual website using the "
|
625 |
"Multilanguage plugin."
|
@@ -627,15 +627,15 @@ msgstr ""
|
|
627 |
"Увімкніть, щоб перемкнути мову автоматично на багатомовному сайті, "
|
628 |
"використовуючи плагін Multilanguage."
|
629 |
|
630 |
-
#: includes/pro_banners.php:
|
631 |
msgid "Size"
|
632 |
msgstr "Розмір"
|
633 |
|
634 |
-
#: includes/pro_banners.php:
|
635 |
msgid "Normal"
|
636 |
msgstr "Нормальний"
|
637 |
|
638 |
-
#: includes/pro_banners.php:
|
639 |
msgid "Compact"
|
640 |
msgstr "Компактний"
|
641 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: reCaptcha\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2021-07-30 15:37+0300\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
467 |
msgid "WordPress default"
|
468 |
msgstr "Стандартних форм WordPress"
|
469 |
|
470 |
+
#: includes/forms.php:47 includes/pro_banners.php:81
|
471 |
msgid "External Plugins"
|
472 |
msgstr "Зовнішні плагіни"
|
473 |
|
611 |
msgid "Ultimate Member Profile form"
|
612 |
msgstr "Форма профілю плагіна Ultimate Member"
|
613 |
|
614 |
+
#: includes/pro_banners.php:183
|
615 |
msgid "Language"
|
616 |
msgstr "Мова"
|
617 |
|
618 |
+
#: includes/pro_banners.php:191
|
619 |
msgid "Multilanguage"
|
620 |
msgstr "Multilanguage"
|
621 |
|
622 |
+
#: includes/pro_banners.php:194
|
623 |
msgid ""
|
624 |
"Enable to switch language automatically on multilingual website using the "
|
625 |
"Multilanguage plugin."
|
627 |
"Увімкніть, щоб перемкнути мову автоматично на багатомовному сайті, "
|
628 |
"використовуючи плагін Multilanguage."
|
629 |
|
630 |
+
#: includes/pro_banners.php:206
|
631 |
msgid "Size"
|
632 |
msgstr "Розмір"
|
633 |
|
634 |
+
#: includes/pro_banners.php:210
|
635 |
msgid "Normal"
|
636 |
msgstr "Нормальний"
|
637 |
|
638 |
+
#: includes/pro_banners.php:211
|
639 |
msgid "Compact"
|
640 |
msgstr "Компактний"
|
641 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://bestwebsoft.com/donate/
|
|
4 |
Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha, recaptcha version3
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.8
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -63,6 +63,7 @@ http://www.youtube.com/watch?v=L2BziEOL3Fg
|
|
63 |
> * Ninja Forms
|
64 |
> * Gravity Forms
|
65 |
> * WPForms
|
|
|
66 |
> * Compatible with WooCommerce:
|
67 |
> * Login form
|
68 |
> * Register form
|
@@ -84,7 +85,7 @@ http://www.youtube.com/watch?v=L2BziEOL3Fg
|
|
84 |
> * Registration form
|
85 |
> * New Topic form
|
86 |
> * Reply form
|
87 |
-
> * Compatible with Ultimate Member
|
88 |
> * Login form
|
89 |
> * Registration form
|
90 |
> * Profile form
|
@@ -110,6 +111,10 @@ If you have a feature suggestion or idea you'd like to see in the plugin, we'd l
|
|
110 |
|
111 |
Visit our Help Center if you have any questions, our friendly Support Team is happy to help - <https://support.bestwebsoft.com/>
|
112 |
|
|
|
|
|
|
|
|
|
113 |
= Translation =
|
114 |
|
115 |
* Czech (cs_CZ) (thanks to [Michal Kučera](mailto:kucerami@gmail.com), www.n0lim.it, [PaMaDeSSoft](mailto:info@pamadessoft.cz), www.pamadessoft.cz)
|
@@ -269,6 +274,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
269 |
|
270 |
== Changelog ==
|
271 |
|
|
|
|
|
|
|
|
|
272 |
= V1.63 - 21.07.2021 =
|
273 |
* Update : All functionality was updated for WordPress 5.8.
|
274 |
* Update : BWS Panel section was updated.
|
@@ -554,6 +563,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
554 |
|
555 |
== Upgrade Notice ==
|
556 |
|
|
|
|
|
|
|
557 |
= V1.63 =
|
558 |
* Usability improved.
|
559 |
* Bugs fixed.
|
4 |
Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha, recaptcha version3
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.8
|
7 |
+
Stable tag: 1.64
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
63 |
> * Ninja Forms
|
64 |
> * Gravity Forms
|
65 |
> * WPForms
|
66 |
+
> * Caldera Forms [NEW]
|
67 |
> * Compatible with WooCommerce:
|
68 |
> * Login form
|
69 |
> * Register form
|
85 |
> * Registration form
|
86 |
> * New Topic form
|
87 |
> * Reply form
|
88 |
+
> * Compatible with Ultimate Member:
|
89 |
> * Login form
|
90 |
> * Registration form
|
91 |
> * Profile form
|
111 |
|
112 |
Visit our Help Center if you have any questions, our friendly Support Team is happy to help - <https://support.bestwebsoft.com/>
|
113 |
|
114 |
+
= Affiliate Program =
|
115 |
+
|
116 |
+
Earn 20% commission by selling the premium WordPress plugins and themes by BestWebSoft - <https://bestwebsoft.com/affiliate/>
|
117 |
+
|
118 |
= Translation =
|
119 |
|
120 |
* Czech (cs_CZ) (thanks to [Michal Kučera](mailto:kucerami@gmail.com), www.n0lim.it, [PaMaDeSSoft](mailto:info@pamadessoft.cz), www.pamadessoft.cz)
|
274 |
|
275 |
== Changelog ==
|
276 |
|
277 |
+
= V1.64 - 18.08.2021 =
|
278 |
+
* Bugfix : 'use strict' was added.
|
279 |
+
* Pro : The compatibility with Caldera Member has been added.
|
280 |
+
|
281 |
= V1.63 - 21.07.2021 =
|
282 |
* Update : All functionality was updated for WordPress 5.8.
|
283 |
* Update : BWS Panel section was updated.
|
563 |
|
564 |
== Upgrade Notice ==
|
565 |
|
566 |
+
= V1.64 =
|
567 |
+
* New features added.
|
568 |
+
|
569 |
= V1.63 =
|
570 |
* Usability improved.
|
571 |
* Bugs fixed.
|