Version Description
- Fix: Accept cookie button hidden on acceptance instead of the cookie message container
Download this release
Release Info
Developer | dfactory |
Plugin | Cookie Notice by dFactory |
Version | 1.2.32 |
Comparing to | |
See all releases |
Code changes from version 1.2.31 to 1.2.32
- cookie-notice.php +3 -3
- js/front.js +1 -1
- readme.txt +7 -5
cookie-notice.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Cookie Notice
|
4 |
Description: Cookie Notice allows you to elegantly inform users that your site uses cookies and to comply with the EU cookie law regulations.
|
5 |
-
Version: 1.2.
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/cookie-notice/
|
@@ -34,7 +34,7 @@ include_once( plugin_dir_path( __FILE__ ) . 'includes/update.php' );
|
|
34 |
* Cookie Notice class.
|
35 |
*
|
36 |
* @class Cookie_Notice
|
37 |
-
* @version 1.2.
|
38 |
*/
|
39 |
class Cookie_Notice {
|
40 |
|
@@ -70,7 +70,7 @@ class Cookie_Notice {
|
|
70 |
'translate' => true,
|
71 |
'deactivation_delete' => 'no'
|
72 |
),
|
73 |
-
'version' => '1.2.
|
74 |
);
|
75 |
private $positions = array();
|
76 |
private $styles = array();
|
2 |
/*
|
3 |
Plugin Name: Cookie Notice
|
4 |
Description: Cookie Notice allows you to elegantly inform users that your site uses cookies and to comply with the EU cookie law regulations.
|
5 |
+
Version: 1.2.32
|
6 |
Author: dFactory
|
7 |
Author URI: http://www.dfactory.eu/
|
8 |
Plugin URI: http://www.dfactory.eu/plugins/cookie-notice/
|
34 |
* Cookie Notice class.
|
35 |
*
|
36 |
* @class Cookie_Notice
|
37 |
+
* @version 1.2.32
|
38 |
*/
|
39 |
class Cookie_Notice {
|
40 |
|
70 |
'translate' => true,
|
71 |
'deactivation_delete' => 'no'
|
72 |
),
|
73 |
+
'version' => '1.2.32'
|
74 |
);
|
75 |
private $positions = array();
|
76 |
private $styles = array();
|
js/front.js
CHANGED
@@ -80,7 +80,7 @@
|
|
80 |
|
81 |
// remove Cookie Notice
|
82 |
$.fn.removeCookieNotice = function ( cookie_value ) {
|
83 |
-
$(
|
84 |
$( 'body' ).removeClass( 'cookies-not-accepted' );
|
85 |
}
|
86 |
|
80 |
|
81 |
// remove Cookie Notice
|
82 |
$.fn.removeCookieNotice = function ( cookie_value ) {
|
83 |
+
$( '#cookie-notice' ).remove();
|
84 |
$( 'body' ).removeClass( 'cookies-not-accepted' );
|
85 |
}
|
86 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: dfactory
|
|
3 |
Donate link: http://www.dfactory.eu/
|
4 |
Tags: cookie, cookies, notice, notification, notify, cookie, cookie compliance, cookie law, eu cookie, privacy, privacy directive, consent, Bootstrap
|
5 |
Requires at least: 3.3
|
6 |
-
Tested up to: 4.2.
|
7 |
-
Stable tag: 1.2.
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
@@ -78,6 +78,9 @@ No questions yet.
|
|
78 |
|
79 |
== Changelog ==
|
80 |
|
|
|
|
|
|
|
81 |
= 1.2.31 =
|
82 |
* New: Non functional Javascript code field
|
83 |
* Fix: Minified Javascript caching issue
|
@@ -206,6 +209,5 @@ Initial release
|
|
206 |
|
207 |
== Upgrade Notice ==
|
208 |
|
209 |
-
= 1.2.
|
210 |
-
*
|
211 |
-
* Fix: Minified Javascript caching issue
|
3 |
Donate link: http://www.dfactory.eu/
|
4 |
Tags: cookie, cookies, notice, notification, notify, cookie, cookie compliance, cookie law, eu cookie, privacy, privacy directive, consent, Bootstrap
|
5 |
Requires at least: 3.3
|
6 |
+
Tested up to: 4.2.3
|
7 |
+
Stable tag: 1.2.32
|
8 |
License: MIT License
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
78 |
|
79 |
== Changelog ==
|
80 |
|
81 |
+
= 1.2.32 =
|
82 |
+
* Fix: Accept cookie button hidden on acceptance instead of the cookie message container
|
83 |
+
|
84 |
= 1.2.31 =
|
85 |
* New: Non functional Javascript code field
|
86 |
* Fix: Minified Javascript caching issue
|
209 |
|
210 |
== Upgrade Notice ==
|
211 |
|
212 |
+
= 1.2.32 =
|
213 |
+
* Fix: Accept cookie button hidden on acceptance instead of the cookie message container
|
|