Version Description
- Disable CS on Divi builder page
Download this release
Release Info
Developer | iubenda |
Plugin | iubenda Cookie Solution for GDPR |
Version | 2.5.5 |
Comparing to | |
See all releases |
Code changes from version 2.5.4 to 2.5.5
- iubenda_cookie_solution.php +8 -3
- readme.txt +7 -8
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,
|
@@ -401,6 +401,11 @@ class iubenda {
|
|
401 |
if ( ( $_POST && $this->options['cs']['output_post'] ) || $this->no_html )
|
402 |
return;
|
403 |
|
|
|
|
|
|
|
|
|
|
|
404 |
// initial head output
|
405 |
$iubenda_code = '';
|
406 |
|
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.5
|
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.5
|
36 |
*/
|
37 |
class iubenda {
|
38 |
|
62 |
)
|
63 |
);
|
64 |
public $base_url;
|
65 |
+
public $version = '2.5.5';
|
66 |
public $activation = array(
|
67 |
'update_version' => 0,
|
68 |
'update_notice' => true,
|
401 |
if ( ( $_POST && $this->options['cs']['output_post'] ) || $this->no_html )
|
402 |
return;
|
403 |
|
404 |
+
// bail if current page is page builder of Divi by elegant themes
|
405 |
+
if ( function_exists( 'et_fb_is_enabled' ) && et_fb_is_enabled() ) {
|
406 |
+
return;
|
407 |
+
}
|
408 |
+
|
409 |
// initial head output
|
410 |
$iubenda_code = '';
|
411 |
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link:
|
|
4 |
Tags: cookies, cookie law, cookie policy, cookie banner, privacy policy, cookie consent, privacy, gdpr, eprivacy
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
-
Tested up to: 5.
|
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.4 =
|
154 |
* Cast preferences field into boolean in WPForms.
|
155 |
* Fix preference field not saved in CF7.
|
@@ -529,9 +532,5 @@ We will be very happy to receive feedback here: [Uservoice forum](https://suppor
|
|
529 |
|
530 |
== Upgrade Notice ==
|
531 |
|
532 |
-
= 2.5.
|
533 |
-
*
|
534 |
-
* Fix preference field not saved in CF7.
|
535 |
-
* Integrate with Germanized for WooCommerce in ConS.
|
536 |
-
* Allow only the mapped forms in ConS.
|
537 |
-
* Allow mapping the ConS forms without specifying the preferences field.
|
4 |
Tags: cookies, cookie law, cookie policy, cookie banner, privacy policy, cookie consent, privacy, gdpr, eprivacy
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
+
Tested up to: 5.8
|
8 |
+
Stable tag: 2.5.5
|
9 |
License: MIT License
|
10 |
License URI: http://opensource.org/licenses/MIT
|
11 |
|
150 |
|
151 |
== Changelog ==
|
152 |
|
153 |
+
= 2.5.5 =
|
154 |
+
* Disable CS on Divi builder page
|
155 |
+
|
156 |
= 2.5.4 =
|
157 |
* Cast preferences field into boolean in WPForms.
|
158 |
* Fix preference field not saved in CF7.
|
532 |
|
533 |
== Upgrade Notice ==
|
534 |
|
535 |
+
= 2.5.5 =
|
536 |
+
* Disable CS on Divi builder page
|
|
|
|
|
|
|
|