Version Description
Bugfix: Custom settings with Polylang
Download this release
Release Info
Developer | wunderfarm |
Plugin | WF Cookie Consent |
Version | 0.8.3 |
Comparing to | |
See all releases |
Code changes from version 0.8.2 to 0.8.3
- readme.txt +7 -4
- screenshot-2.png +0 -0
- wf-cookie-consent.php +2 -2
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Plugin Name ===
|
2 |
Contributors: wunderfarm
|
3 |
Donate link: http://wunderfarm.com/
|
4 |
-
Tags: compliance, cookie law, cookies, eu cookie law, eu privacy directive, privacy, privacy directive, cookie consent, Multi language, WPML, polylang, responsive
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.2.2
|
7 |
-
Stable tag: 0.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -20,7 +20,7 @@ WF Cookie Consent is the "wunderfarm-way" to show how your website complies with
|
|
20 |
|
21 |
1. Upload `WF Cookie Consent` to the `/wp-content/plugins/` directory
|
22 |
2. Activate the plugin through the 'Plugins' menu in WordPress
|
23 |
-
|
24 |
|
25 |
== Screenshots ==
|
26 |
1. Example showing the wf-cookie-consent-bar
|
@@ -29,8 +29,11 @@ WF Cookie Consent is the "wunderfarm-way" to show how your website complies with
|
|
29 |
|
30 |
== Changelog ==
|
31 |
|
|
|
|
|
|
|
32 |
= 0.8.2 =
|
33 |
Bugfixes: Custom fields for default language (en) and selected more-info page.
|
34 |
|
35 |
= 0.8.1 =
|
36 |
-
Support for WPML and
|
1 |
=== Plugin Name ===
|
2 |
Contributors: wunderfarm
|
3 |
Donate link: http://wunderfarm.com/
|
4 |
+
Tags: compliance, cookie law, cookielaw, cookies, eu cookie law, eu privacy directive, privacy, privacy directive, cookie consent, cookieconsent, Multi language, WPML, polylang, responsive
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.2.2
|
7 |
+
Stable tag: 0.8.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
20 |
|
21 |
1. Upload `WF Cookie Consent` to the `/wp-content/plugins/` directory
|
22 |
2. Activate the plugin through the 'Plugins' menu in WordPress
|
23 |
+
3. If you want to set custom settings, go to Settings menu > WF Cookie Consent.
|
24 |
|
25 |
== Screenshots ==
|
26 |
1. Example showing the wf-cookie-consent-bar
|
29 |
|
30 |
== Changelog ==
|
31 |
|
32 |
+
= 0.8.3 =
|
33 |
+
Bugfix: Custom settings with Polylang
|
34 |
+
|
35 |
= 0.8.2 =
|
36 |
Bugfixes: Custom fields for default language (en) and selected more-info page.
|
37 |
|
38 |
= 0.8.1 =
|
39 |
+
Support for WPML and Polylang
|
screenshot-2.png
CHANGED
Binary file
|
wf-cookie-consent.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WF Cookie Consent
|
4 |
Plugin URI: http://www.wunderfarm.com/plugins/wf-cookie-consent
|
5 |
Description: The wunderfarm-way to show how your website complies with the EU Cookie Law.
|
6 |
-
Version: 0.8.
|
7 |
License: GNU General Public License v2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
Author: wunderfarm
|
@@ -162,7 +162,7 @@ function wf_get_languages() {
|
|
162 |
if (isset($polylang)) {
|
163 |
$pl_languages = $polylang->model->get_languages_list();
|
164 |
foreach ($pl_languages as $pl_language) {
|
165 |
-
$languages[] = $pl_language->
|
166 |
}
|
167 |
} else if(function_exists('icl_get_languages')) {
|
168 |
//icl_get_languages for wpml
|
3 |
Plugin Name: WF Cookie Consent
|
4 |
Plugin URI: http://www.wunderfarm.com/plugins/wf-cookie-consent
|
5 |
Description: The wunderfarm-way to show how your website complies with the EU Cookie Law.
|
6 |
+
Version: 0.8.3
|
7 |
License: GNU General Public License v2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
Author: wunderfarm
|
162 |
if (isset($polylang)) {
|
163 |
$pl_languages = $polylang->model->get_languages_list();
|
164 |
foreach ($pl_languages as $pl_language) {
|
165 |
+
$languages[] = $pl_language->slug;
|
166 |
}
|
167 |
} else if(function_exists('icl_get_languages')) {
|
168 |
//icl_get_languages for wpml
|