Version Description
- Minor CSS fixes
- Forum links updated
Download this release
Release Info
Developer | MooveAgency |
Plugin | GDPR Cookie Compliance |
Version | 3.1.1 |
Comparing to | |
See all releases |
Code changes from version 3.1.0 to 3.1.1
- moove-actions.php +1 -1
- moove-functions.php +1 -1
- moove-gdpr.php +2 -2
- readme.txt +6 -2
- views/moove/admin/settings/plugin_boxes.php +1 -1
moove-actions.php
CHANGED
@@ -50,7 +50,7 @@ class Moove_GDPR_Actions {
|
|
50 |
$gdpr_default_content = new Moove_GDPR_Content();
|
51 |
$option_key = $gdpr_default_content->moove_gdpr_get_key_name();
|
52 |
$gdpr_key = function_exists( 'get_site_option' ) ? get_site_option( $option_key ) : get_option( $option_key );
|
53 |
-
if ( ! isset( $gdpr_key['deactivation'] ) ) :
|
54 |
do_action( 'gdpr_plugin_loaded' );
|
55 |
endif;
|
56 |
}
|
50 |
$gdpr_default_content = new Moove_GDPR_Content();
|
51 |
$option_key = $gdpr_default_content->moove_gdpr_get_key_name();
|
52 |
$gdpr_key = function_exists( 'get_site_option' ) ? get_site_option( $option_key ) : get_option( $option_key );
|
53 |
+
if ( $gdpr_key && ! isset( $gdpr_key['deactivation'] ) ) :
|
54 |
do_action( 'gdpr_plugin_loaded' );
|
55 |
endif;
|
56 |
}
|
moove-functions.php
CHANGED
@@ -31,7 +31,7 @@ function moove_gdpr_plugin_settings_link( $links, $file ) {
|
|
31 |
/*
|
32 |
* Insert the Support page link at the end
|
33 |
*/
|
34 |
-
$in = '<a href="https://
|
35 |
array_push( $links, $in );
|
36 |
/*
|
37 |
* Insert the Premium Upgrade link at the end
|
31 |
/*
|
32 |
* Insert the Support page link at the end
|
33 |
*/
|
34 |
+
$in = '<a href="https://support.mooveagency.com/forum/gdpr-cookie-compliance/" target="_blank">' . __( 'Support','gdpr-cookie-compliance' ) . '</a>';
|
35 |
array_push( $links, $in );
|
36 |
/*
|
37 |
* Insert the Premium Upgrade link at the end
|
moove-gdpr.php
CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly
|
|
6 |
* Plugin Name: GDPR Cookie Compliance
|
7 |
* Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/
|
8 |
* Description: GDPR is an EU wide legislation that specifies how user data should be handled. This plugin has settings that can assist you with GDPR cookie compliance requirements.
|
9 |
-
* Version: 3.1.
|
10 |
* Author: Moove Agency
|
11 |
* Domain Path: /languages
|
12 |
* Author URI: https://www.mooveagency.com
|
@@ -15,7 +15,7 @@ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly
|
|
15 |
*/
|
16 |
|
17 |
|
18 |
-
define( 'MOOVE_GDPR_VERSION', '3.1.
|
19 |
if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
|
20 |
define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
|
21 |
endif;
|
6 |
* Plugin Name: GDPR Cookie Compliance
|
7 |
* Plugin URI: https://wordpress.org/plugins/gdpr-cookie-compliance/
|
8 |
* Description: GDPR is an EU wide legislation that specifies how user data should be handled. This plugin has settings that can assist you with GDPR cookie compliance requirements.
|
9 |
+
* Version: 3.1.1
|
10 |
* Author: Moove Agency
|
11 |
* Domain Path: /languages
|
12 |
* Author URI: https://www.mooveagency.com
|
15 |
*/
|
16 |
|
17 |
|
18 |
+
define( 'MOOVE_GDPR_VERSION', '3.1.1' );
|
19 |
if ( ! defined( 'MOOVE_SHOP_URL' ) ) :
|
20 |
define( 'MOOVE_SHOP_URL', 'https://shop.mooveagency.com' );
|
21 |
endif;
|
readme.txt
CHANGED
@@ -83,7 +83,7 @@ There are many other variations organisations choose to set the plugin up, our p
|
|
83 |
|
84 |
### Personalised installation & setup
|
85 |
* Contact us if you'd like a personalised advice, installation or support for bespoke customisations on plugins@mooveagency.com (please note that this is a paid service).
|
86 |
-
* For general support, please use the [Support Forum](https://
|
87 |
|
88 |
#### Disclaimer
|
89 |
|
@@ -181,7 +181,11 @@ THIS PLUGIN DOES NOT MAKE YOUR WEBSITE COMPLIANT. YOU ARE RESPONSIBLE FOR ENSURI
|
|
181 |
32. GDPR Cookie Compliance - Admin - Language Specific Scripts [Premium]
|
182 |
|
183 |
== Changelog ==
|
184 |
-
= 3.
|
|
|
|
|
|
|
|
|
185 |
* Added hook to prevent loading the Lity lightbox assets by JavaScript
|
186 |
|
187 |
= 3.0.4 =
|
83 |
|
84 |
### Personalised installation & setup
|
85 |
* Contact us if you'd like a personalised advice, installation or support for bespoke customisations on plugins@mooveagency.com (please note that this is a paid service).
|
86 |
+
* For general support, please use the [Support Forum](https://support.mooveagency.com/forum/gdpr-cookie-compliance/).
|
87 |
|
88 |
#### Disclaimer
|
89 |
|
181 |
32. GDPR Cookie Compliance - Admin - Language Specific Scripts [Premium]
|
182 |
|
183 |
== Changelog ==
|
184 |
+
= 3.1.1 =
|
185 |
+
* Minor CSS fixes
|
186 |
+
* Forum links updated
|
187 |
+
|
188 |
+
= 3.1.0 =
|
189 |
* Added hook to prevent loading the Lity lightbox assets by JavaScript
|
190 |
|
191 |
= 3.0.4 =
|
views/moove/admin/settings/plugin_boxes.php
CHANGED
@@ -43,7 +43,7 @@
|
|
43 |
<div class="box-content">
|
44 |
<?php
|
45 |
$faq_link = apply_filters( 'gdpr_cookie_compliance_faq_section_link', 'https://wordpress.org/plugins/gdpr-cookie-compliance/#faq-header' );
|
46 |
-
$forum_link = apply_filters( 'gdpr_cookie_compliance_forum_section_link', 'https://
|
47 |
?>
|
48 |
<div class="gdpr-faq-forum-content">
|
49 |
<p><span class="gdpr-chevron-left">›</span> Check the <a href="?page=moove-gdpr&tab=help">Help section</a> to find out more about Hooks, Filters & Shortcodes available</p>
|
43 |
<div class="box-content">
|
44 |
<?php
|
45 |
$faq_link = apply_filters( 'gdpr_cookie_compliance_faq_section_link', 'https://wordpress.org/plugins/gdpr-cookie-compliance/#faq-header' );
|
46 |
+
$forum_link = apply_filters( 'gdpr_cookie_compliance_forum_section_link', 'https://support.mooveagency.com/forum/gdpr-cookie-compliance/' );
|
47 |
?>
|
48 |
<div class="gdpr-faq-forum-content">
|
49 |
<p><span class="gdpr-chevron-left">›</span> Check the <a href="?page=moove-gdpr&tab=help">Help section</a> to find out more about Hooks, Filters & Shortcodes available</p>
|