Version Description
- Add action (Hook) before rendering the source form
- Change the AMP consent href
Download this release
Release Info
Developer | iubenda |
Plugin | iubenda Cookie Solution for GDPR |
Version | 2.3.10 |
Comparing to | |
See all releases |
Code changes from version 2.3.9 to 2.3.10
- includes/amp.php +1 -1
- includes/forms.php +3 -0
- iubenda_cookie_solution.php +3 -3
- readme.txt +8 -4
includes/amp.php
CHANGED
@@ -126,7 +126,7 @@ class iubenda_AMP {
|
|
126 |
{
|
127 |
"consentInstanceId": "consent' . $configuration['siteId'] . '",
|
128 |
"consentRequired": "remote",
|
129 |
-
"checkConsentHref": "https://
|
130 |
"promptUI": "myConsentFlow"
|
131 |
}
|
132 |
</script>
|
126 |
{
|
127 |
"consentInstanceId": "consent' . $configuration['siteId'] . '",
|
128 |
"consentRequired": "remote",
|
129 |
+
"checkConsentHref": "https://amp.iubenda.com/cs/amp/checkConsent",
|
130 |
"promptUI": "myConsentFlow"
|
131 |
}
|
132 |
</script>
|
includes/forms.php
CHANGED
@@ -512,6 +512,9 @@ class iubenda_Forms {
|
|
512 |
'quiz'
|
513 |
) );
|
514 |
|
|
|
|
|
|
|
515 |
switch ( $source ) {
|
516 |
case 'wpforms' :
|
517 |
$args = array(
|
512 |
'quiz'
|
513 |
) );
|
514 |
|
515 |
+
// Do what you want before preparing the form
|
516 |
+
do_action("iub_before_call_{$source}_forms");
|
517 |
+
|
518 |
switch ( $source ) {
|
519 |
case 'wpforms' :
|
520 |
$args = array(
|
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.3.
|
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.3.
|
36 |
*/
|
37 |
class iubenda {
|
38 |
|
@@ -61,7 +61,7 @@ class iubenda {
|
|
61 |
)
|
62 |
);
|
63 |
public $base_url;
|
64 |
-
public $version = '2.3.
|
65 |
public $activation = array(
|
66 |
'update_version' => 0,
|
67 |
'update_notice' => true,
|
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.3.10
|
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.3.10
|
36 |
*/
|
37 |
class iubenda {
|
38 |
|
61 |
)
|
62 |
);
|
63 |
public $base_url;
|
64 |
+
public $version = '2.3.10';
|
65 |
public $activation = array(
|
66 |
'update_version' => 0,
|
67 |
'update_notice' => true,
|
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.5.0
|
8 |
-
Stable tag: 2.3.
|
9 |
License: MIT License
|
10 |
License URI: http://opensource.org/licenses/MIT
|
11 |
|
@@ -150,6 +150,10 @@ We will be very happy to receive feedback here: [Uservoice forum](https://suppor
|
|
150 |
|
151 |
== Changelog ==
|
152 |
|
|
|
|
|
|
|
|
|
153 |
= 2.3.9 =
|
154 |
* Fix: Woocommerce custom theme support
|
155 |
* Fix: Detect changes on WPforms
|
@@ -460,6 +464,6 @@ We will be very happy to receive feedback here: [Uservoice forum](https://suppor
|
|
460 |
|
461 |
== Upgrade Notice ==
|
462 |
|
463 |
-
= 2.3.
|
464 |
-
*
|
465 |
-
*
|
5 |
Requires at least: 4.0
|
6 |
Requires PHP: 5.2.4
|
7 |
Tested up to: 5.5.0
|
8 |
+
Stable tag: 2.3.10
|
9 |
License: MIT License
|
10 |
License URI: http://opensource.org/licenses/MIT
|
11 |
|
150 |
|
151 |
== Changelog ==
|
152 |
|
153 |
+
= 2.3.10 =
|
154 |
+
* Add action (Hook) before rendering the source form
|
155 |
+
* Change the AMP consent href
|
156 |
+
|
157 |
= 2.3.9 =
|
158 |
* Fix: Woocommerce custom theme support
|
159 |
* Fix: Detect changes on WPforms
|
464 |
|
465 |
== Upgrade Notice ==
|
466 |
|
467 |
+
= 2.3.10 =
|
468 |
+
* Add action (Hook) before rendering the source form
|
469 |
+
* Change the AMP consent href
|