Version Description
Release date: December 18th, 2020 * Resolve deprecation notice for wp_make_content_images_responsive() since WordPress 5.5.0
Download this release
Release Info
Developer | tomgreep |
Plugin | WP GDPR Compliance |
Version | 1.5.5 |
Comparing to | |
See all releases |
Code changes from version 1.5.4 to 1.5.5
- readme.txt +6 -2
- wp-gdpr-compliance.php +2 -2
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: van-ons
|
3 |
Tags: gdpr, law, regulations, compliance, data, protection, privacy, data protection, eu, avg, comments, woocommerce, wc, contact form 7, cf7
|
4 |
Requires at least: 4.5
|
5 |
-
Tested up to: 5.
|
6 |
Requires PHP: 5.3
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -44,6 +44,10 @@ You'll find answers to many of your questions on [https://www.wpgdprc.com/faq/](
|
|
44 |
|
45 |
== Changelog ==
|
46 |
|
|
|
|
|
|
|
|
|
47 |
= 1.5.4 =
|
48 |
*Release date: June 9th, 2020*
|
49 |
* Improved Web Content Accessibility Guidelines (WCAG)
|
2 |
Contributors: van-ons
|
3 |
Tags: gdpr, law, regulations, compliance, data, protection, privacy, data protection, eu, avg, comments, woocommerce, wc, contact form 7, cf7
|
4 |
Requires at least: 4.5
|
5 |
+
Tested up to: 5.6
|
6 |
Requires PHP: 5.3
|
7 |
+
Stable tag: 1.5.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
44 |
|
45 |
== Changelog ==
|
46 |
|
47 |
+
= 1.5.5 =
|
48 |
+
*Release date: December 18th, 2020*
|
49 |
+
* Resolve deprecation notice for wp_make_content_images_responsive() since WordPress 5.5.0
|
50 |
+
|
51 |
= 1.5.4 =
|
52 |
*Release date: June 9th, 2020*
|
53 |
* Improved Web Content Accessibility Guidelines (WCAG)
|
wp-gdpr-compliance.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: WP GDPR Compliance
|
5 |
Plugin URI: https://www.wpgdprc.com/
|
6 |
Description: This plugin assists website and webshop owners to comply with European privacy regulations known as GDPR. By May 24th, 2018 your website or shop has to comply to avoid large fines.
|
7 |
-
Version: 1.5.
|
8 |
Author: Van Ons
|
9 |
Author URI: https://www.van-ons.nl/
|
10 |
License: GPL2
|
@@ -144,7 +144,7 @@ class WPGDPRC {
|
|
144 |
add_filter('wpgdprc_the_content', 'convert_smilies', 20);
|
145 |
add_filter('wpgdprc_the_content', 'wpautop');
|
146 |
add_filter('wpgdprc_the_content', 'shortcode_unautop');
|
147 |
-
add_filter('wpgdprc_the_content', '
|
148 |
}
|
149 |
|
150 |
public static function checkSession() {
|
4 |
Plugin Name: WP GDPR Compliance
|
5 |
Plugin URI: https://www.wpgdprc.com/
|
6 |
Description: This plugin assists website and webshop owners to comply with European privacy regulations known as GDPR. By May 24th, 2018 your website or shop has to comply to avoid large fines.
|
7 |
+
Version: 1.5.5
|
8 |
Author: Van Ons
|
9 |
Author URI: https://www.van-ons.nl/
|
10 |
License: GPL2
|
144 |
add_filter('wpgdprc_the_content', 'convert_smilies', 20);
|
145 |
add_filter('wpgdprc_the_content', 'wpautop');
|
146 |
add_filter('wpgdprc_the_content', 'shortcode_unautop');
|
147 |
+
add_filter('wpgdprc_the_content', 'wp_filter_content_tags');
|
148 |
}
|
149 |
|
150 |
public static function checkSession() {
|