WP DSGVO Tools - Version 2.2.6

Version Description

  • WPML improvement
Download this release

Release Info

Developer shapepress
Plugin Icon 128x128 WP DSGVO Tools
Version 2.2.6
Comparing to
See all releases

Code changes from version 2.2.5 to 2.2.6

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wp-dsgvo.eu
4
  Tags: gdpr, dsgvo, datenschutz, wordpress, compliance, data, privacy, woocommerce,
5
  Requires at least: 3.0.1
6
  Tested up to: 5.0.0
7
- Stable tag: 2.2.5
8
  Requires PHP: 5.6.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -80,6 +80,9 @@ Important: Disable other cookie notice plugins and Google Analytics or FB Pixel
80
 
81
  == Changelog ==
82
 
 
 
 
83
  = 2.2.5 =
84
  * compatibility issues
85
 
4
  Tags: gdpr, dsgvo, datenschutz, wordpress, compliance, data, privacy, woocommerce,
5
  Requires at least: 3.0.1
6
  Tested up to: 5.0.0
7
+ Stable tag: 2.2.6
8
  Requires PHP: 5.6.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
80
 
81
  == Changelog ==
82
 
83
+ = 2.2.6 =
84
+ * WPML improvement
85
+
86
  = 2.2.5 =
87
  * compatibility issues
88
 
public/class-sp-dsgvo-public.php CHANGED
@@ -179,11 +179,17 @@ class SPDSGVOPublic
179
  href="https://wp-dsgvo.eu" target="_blank"><img id="cn-notice-icon"
180
  src="<?= plugin_dir_url(__FILE__) . 'images/cookie-icon.png' ?>"
181
  alt="WP DSGVO Tools (GDPR) for Wordpress and WooCommerce" title="WP DSGVO Tools (GDPR) for Wordpress and WooCommerce" style="display:block !important;" /></a></span>
182
- <?php endif; ?>
 
 
 
 
 
 
183
 
184
  <span id="cn-notice-text" class="<?= SPDSGVOSettings::get('cn_custom_css_text') !== '' ? SPDSGVOSettings::get('cn_custom_css_text'):'' ?>"
185
  style="font-size:<?= SPDSGVOSettings::get('cn_size_text') ?>;"
186
- ><?= convDeChars(SPDSGVOSettings::get('cookie_notice_custom_text')); ?></span>
187
 
188
  <?php
189
  $button_ok = SPDSGVOSettings::get('cn_button_text_ok');
179
  href="https://wp-dsgvo.eu" target="_blank"><img id="cn-notice-icon"
180
  src="<?= plugin_dir_url(__FILE__) . 'images/cookie-icon.png' ?>"
181
  alt="WP DSGVO Tools (GDPR) for Wordpress and WooCommerce" title="WP DSGVO Tools (GDPR) for Wordpress and WooCommerce" style="display:block !important;" /></a></span>
182
+ <?php endif;
183
+
184
+ $cookieNoticeCustomText = SPDSGVOSettings::get('cookie_notice_custom_text');
185
+ if(function_exists('icl_translate')) {
186
+ $cookieNoticeCustomText = icl_translate('shapepress-dsgvo', 'cookie_notice_custom_text', $cookieNoticeCustomText);
187
+ }
188
+ ?>
189
 
190
  <span id="cn-notice-text" class="<?= SPDSGVOSettings::get('cn_custom_css_text') !== '' ? SPDSGVOSettings::get('cn_custom_css_text'):'' ?>"
191
  style="font-size:<?= SPDSGVOSettings::get('cn_size_text') ?>;"
192
+ ><?= convDeChars($cookieNoticeCustomText); ?></span>
193
 
194
  <?php
195
  $button_ok = SPDSGVOSettings::get('cn_button_text_ok');
sp-dsgvo.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: WP DSGVO Tools (GDPR)
17
  * Plugin URI: https://wp-dsgvo.eu
18
  * Description: WP DSGVO Tools (GDPR) help you to fulfill the GDPR (DGSVO) compliance guidance (<a target="_blank" href="https://ico.org.uk/for-organisations/data-protection-reform/overview-of-the-gdpr/">GDPR</a>)
19
- * Version: 2.2.5
20
  * Author: Shapepress eU
21
  * Author URI: https://www.shapepress.com
22
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@@ -28,7 +28,7 @@ if (! defined('WPINC')) {
28
  die();
29
  }
30
 
31
- define('sp_dsgvo_VERSION', '2.2.5');
32
  define('sp_dsgvo_NAME', 'sp-dsgvo');
33
  /* i592995 */
34
  define('sp_dsgvo_URL', plugin_dir_url( __FILE__ ));
16
  * Plugin Name: WP DSGVO Tools (GDPR)
17
  * Plugin URI: https://wp-dsgvo.eu
18
  * Description: WP DSGVO Tools (GDPR) help you to fulfill the GDPR (DGSVO) compliance guidance (<a target="_blank" href="https://ico.org.uk/for-organisations/data-protection-reform/overview-of-the-gdpr/">GDPR</a>)
19
+ * Version: 2.2.6
20
  * Author: Shapepress eU
21
  * Author URI: https://www.shapepress.com
22
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
28
  die();
29
  }
30
 
31
+ define('sp_dsgvo_VERSION', '2.2.6');
32
  define('sp_dsgvo_NAME', 'sp-dsgvo');
33
  /* i592995 */
34
  define('sp_dsgvo_URL', plugin_dir_url( __FILE__ ));
wp-config.xml CHANGED
@@ -29,5 +29,6 @@
29
  <key name="default"/>
30
  <key name="image"/>
31
  </key>
 
32
  </admin-texts>
33
  </wpml-config>
29
  <key name="default"/>
30
  <key name="image"/>
31
  </key>
32
+ <key name="sp_dsgvo_ga_tag_number" />
33
  </admin-texts>
34
  </wpml-config>