GDPR Cookie Compliance - Version 4.4.4

Version Description

Download this release

Release Info

Developer MooveAgency
Plugin Icon 128x128 GDPR Cookie Compliance
Version 4.4.4
Comparing to
See all releases

Code changes from version 4.4.3 to 4.4.4

gdpr-modules/modal/company-logo.php CHANGED
@@ -5,6 +5,6 @@
5
  ?>
6
 
7
  <div class="moove-gdpr-company-logo-holder">
8
- <img src="<?php echo esc_url( $content->logo_url ); ?>" alt="<?php echo esc_attr( $content->logo_alt ); ?>" <?php echo apply_filters( 'gpdr_logo_extra_atts', ''); ?> <?php echo $content->logo_width ? ' width="' . $content->logo_width . '"' : '' ?> <?php echo $content->logo_height ? ' height="' . $content->logo_height . '"' : '' ?> class="img-responsive" />
9
  </div>
10
  <!-- .moove-gdpr-company-logo-holder -->
5
  ?>
6
 
7
  <div class="moove-gdpr-company-logo-holder">
8
+ <img src="<?php echo esc_url( $content->logo_url ); ?>" alt="<?php echo esc_attr( $content->logo_alt ); ?>" title="<?php echo apply_filters( 'gdpr_logo_title_attr', esc_attr( $content->logo_alt ) ); ?>" <?php echo apply_filters( 'gpdr_logo_extra_atts', ''); ?> <?php echo $content->logo_width ? ' width="' . $content->logo_width . '"' : '' ?> <?php echo $content->logo_height ? ' height="' . $content->logo_height . '"' : '' ?> class="img-responsive" />
9
  </div>
10
  <!-- .moove-gdpr-company-logo-holder -->
moove-gdpr.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: GDPR Cookie Compliance (CCPA, PIPEDA ready)
5
  * Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/
6
  * Description: Our plugin is useful in preparing your site for the following data protection and privacy regulations: GDPR, PIPEDA, CCPA, AAP, LGPD and others.
7
- * Version: 4.4.3
8
  * Author: Moove Agency
9
  * Domain Path: /languages
10
  * Author URI: https://www.mooveagency.com
@@ -18,7 +18,7 @@ if ( ! defined( 'ABSPATH' ) ) {
18
  exit;
19
  } // Exit if accessed directly
20
 
21
- define( 'MOOVE_GDPR_VERSION', '4.4.3' );
22
  if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
23
  define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
24
  endif;
4
  * Plugin Name: GDPR Cookie Compliance (CCPA, PIPEDA ready)
5
  * Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/
6
  * Description: Our plugin is useful in preparing your site for the following data protection and privacy regulations: GDPR, PIPEDA, CCPA, AAP, LGPD and others.
7
+ * Version: 4.4.4
8
  * Author: Moove Agency
9
  * Domain Path: /languages
10
  * Author URI: https://www.mooveagency.com
18
  exit;
19
  } // Exit if accessed directly
20
 
21
+ define( 'MOOVE_GDPR_VERSION', '4.4.4' );
22
  if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
23
  define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
24
  endif;
readme.txt CHANGED
@@ -1,7 +1,7 @@
1
  === GDPR Cookie Compliance (CCPA, PIPEDA ready) ===
2
  Contributors: MooveAgency
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LCYMMR4EQ2YVW
4
- Stable tag: 4.4.3
5
  Tags: gdpr, cookie, notice, consent, law
6
  Requires at least: 4.5
7
  Tested up to: 5.6
@@ -261,6 +261,9 @@ The Brazilian General Data Protection Law (“Lei Geral de Proteção de Dados
261
  39. GDPR Cookie Compliance - Front-end - Cookie Shortcode [Premium]
262
 
263
  == Changelog ==
 
 
 
264
  = 4.4.3: December 15, 2020 =
265
  * SVG icon CSS update
266
 
1
  === GDPR Cookie Compliance (CCPA, PIPEDA ready) ===
2
  Contributors: MooveAgency
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LCYMMR4EQ2YVW
4
+ Stable tag: 4.4.4
5
  Tags: gdpr, cookie, notice, consent, law
6
  Requires at least: 4.5
7
  Tested up to: 5.6
261
  39. GDPR Cookie Compliance - Front-end - Cookie Shortcode [Premium]
262
 
263
  == Changelog ==
264
+ = 4.4.4: December 15, 2020 =
265
+ * Logo title attribute added
266
+
267
  = 4.4.3: December 15, 2020 =
268
  * SVG icon CSS update
269
 
views/moove/admin/settings/help.php CHANGED
@@ -323,12 +323,13 @@ if ( ! defined( 'ABSPATH' ) ) {
323
  <div class="gdpr-faq-accordion-content" >
324
  <p><?php esc_html_e( 'If you find that our GDPR Cookie Compliance Banner or the Settings Screen is covered by another element on your site, you can add the following to your functions.php', 'gdpr-cookie-compliance' ); ?></p>
325
  <?php ob_start(); ?>
326
- add_action('moove_gdpr_inline_styles','gdpr_cookie_css_extension_zindex',10,3);
327
- function gdpr_cookie_css_extension_zindex( $styles, $primary, $secondary ) {
328
- $styles .= '#moove_gdpr_cookie_info_bar { z-index: 99999999; }';
329
- $styles .= '.lity { z-index: 999999999; }';
330
- return $styles;
331
- }
 
332
  <?php $code = trim( ob_get_clean() ); ?>
333
  <textarea id="<?php echo esc_attr( uniqid( strtotime( 'now' ) ) ); ?>"><?php apply_filters( 'gdpr_cc_keephtml', $code, true ); ?></textarea>
334
  <div class="gdpr-code"></div><!-- .gdpr-code -->
323
  <div class="gdpr-faq-accordion-content" >
324
  <p><?php esc_html_e( 'If you find that our GDPR Cookie Compliance Banner or the Settings Screen is covered by another element on your site, you can add the following to your functions.php', 'gdpr-cookie-compliance' ); ?></p>
325
  <?php ob_start(); ?>
326
+ add_action('moove_gdpr_inline_styles','gdpr_cookie_css_extension_zindex',10,3);
327
+ function gdpr_cookie_css_extension_zindex( $styles, $primary, $secondary ) {
328
+ $styles .= '#moove_gdpr_cookie_info_bar { z-index: 99999999; }';
329
+ $styles .= 'body.moove_gdpr_overflow #moove_gdpr_cookie_info_bar { z-index: 9900; }';
330
+ $styles .= 'body.moove_gdpr_overflow .lity { z-index: 999999999; }';
331
+ return $styles;
332
+ }
333
  <?php $code = trim( ob_get_clean() ); ?>
334
  <textarea id="<?php echo esc_attr( uniqid( strtotime( 'now' ) ) ); ?>"><?php apply_filters( 'gdpr_cc_keephtml', $code, true ); ?></textarea>
335
  <div class="gdpr-code"></div><!-- .gdpr-code -->