Version Description
- Disable automatic block on page builder pages
Download this release
Release Info
Developer | iubenda |
Plugin | iubenda Cookie Solution for GDPR |
Version | 2.5.6 |
Comparing to | |
See all releases |
Code changes from version 2.5.5 to 2.5.6
- iubenda_cookie_solution.php +8 -3
- readme.txt +6 -3
iubenda_cookie_solution.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Cookie and Consent Solution for the GDPR & ePrivacy
|
4 |
Plugin URI: https://www.iubenda.com
|
5 |
Description: An All-in-One approach developed by iubenda, which includes functionalities of two powerful solutions that help to make your website GDPR and ePrivacy compliant.
|
6 |
-
Version: 2.5.
|
7 |
Author: iubenda
|
8 |
Author URI: https://www.iubenda.com
|
9 |
License: MIT License
|
@@ -32,7 +32,7 @@ define( 'IUB_DEBUG', false );
|
|
32 |
* iubenda final class.
|
33 |
*
|
34 |
* @class iubenda
|
35 |
-
* @version 2.5.
|
36 |
*/
|
37 |
class iubenda {
|
38 |
|
@@ -62,7 +62,7 @@ class iubenda {
|
|
62 |
)
|
63 |
);
|
64 |
public $base_url;
|
65 |
-
public $version = '2.5.
|
66 |
public $activation = array(
|
67 |
'update_version' => 0,
|
68 |
'update_notice' => true,
|
@@ -548,6 +548,11 @@ class iubenda {
|
|
548 |
return $output;
|
549 |
}
|
550 |
|
|
|
|
|
|
|
|
|
|
|
551 |
// google recaptcha v3 compatibility
|
552 |
if ( class_exists( 'WPCF7' ) && (int) WPCF7::get_option( 'iqfix_recaptcha' ) === 0 && ! iubendaParser::consent_given() )
|
553 |
$this->options['cs']['custom_scripts']['grecaptcha'] = 2;
|
3 |
Plugin Name: Cookie and Consent Solution for the GDPR & ePrivacy
|
4 |
Plugin URI: https://www.iubenda.com
|
5 |
Description: An All-in-One approach developed by iubenda, which includes functionalities of two powerful solutions that help to make your website GDPR and ePrivacy compliant.
|
6 |
+
Version: 2.5.6
|
7 |
Author: iubenda
|
8 |
Author URI: https://www.iubenda.com
|
9 |
License: MIT License
|
32 |
* iubenda final class.
|
33 |
*
|
34 |
* @class iubenda
|
35 |
+
* @version 2.5.6
|
36 |
*/
|
37 |
class iubenda {
|
38 |
|
62 |
)
|
63 |
);
|
64 |
public $base_url;
|
65 |
+
public $version = '2.5.6';
|
66 |
public $activation = array(
|
67 |
'update_version' => 0,
|
68 |
'update_notice' => true,
|
548 |
return $output;
|
549 |
}
|
550 |
|
551 |
+
// bail if the current page is page builder for any theme
|
552 |
+
if (is_customize_preview()) {
|
553 |
+
return $output;
|
554 |
+
}
|
555 |
+
|
556 |
// google recaptcha v3 compatibility
|
557 |
if ( class_exists( 'WPCF7' ) && (int) WPCF7::get_option( 'iqfix_recaptcha' ) === 0 && ! iubendaParser::consent_given() )
|
558 |
$this->options['cs']['custom_scripts']['grecaptcha'] = 2;
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: cookies, cookie law, cookie policy, cookie banner, privacy policy, cookie
|
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
Tested up to: 5.8
|
8 |
-
Stable tag: 2.5.
|
9 |
License: MIT License
|
10 |
License URI: http://opensource.org/licenses/MIT
|
11 |
|
@@ -150,6 +150,9 @@ We will be very happy to receive feedback here: [Uservoice forum](https://suppor
|
|
150 |
|
151 |
== Changelog ==
|
152 |
|
|
|
|
|
|
|
153 |
= 2.5.5 =
|
154 |
* Disable CS on Divi builder page
|
155 |
|
@@ -532,5 +535,5 @@ We will be very happy to receive feedback here: [Uservoice forum](https://suppor
|
|
532 |
|
533 |
== Upgrade Notice ==
|
534 |
|
535 |
-
= 2.5.
|
536 |
-
* Disable
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
Tested up to: 5.8
|
8 |
+
Stable tag: 2.5.6
|
9 |
License: MIT License
|
10 |
License URI: http://opensource.org/licenses/MIT
|
11 |
|
150 |
|
151 |
== Changelog ==
|
152 |
|
153 |
+
= 2.5.6 =
|
154 |
+
* Disable automatic block on page builder pages
|
155 |
+
|
156 |
= 2.5.5 =
|
157 |
* Disable CS on Divi builder page
|
158 |
|
535 |
|
536 |
== Upgrade Notice ==
|
537 |
|
538 |
+
= 2.5.6 =
|
539 |
+
* Disable automatic block on page builder pages
|