Title: How about GDPR?
Last modified: May 11, 2018

---

# How about GDPR?

 *  Resolved [barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * (@barbarawebnauta)
 * [8 years ago](https://wordpress.org/support/topic/how-about-gdpr/)
 * Hi,
    so far there was no need to upgrade it, and I’ve never had any problems.
   But how do we need now with GDPR? On arrival on the site, the user must not only
   confirm, now must CHOOSE which cookies to keep active, even none. I know that
   WordPress is preparing a release for 15/5, are you integrating with them? Thanks.

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/topic/how-about-gdpr/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/how-about-gdpr/page/2/?output_format=md)

 *  [suekay111](https://wordpress.org/support/users/suekay111/)
 * (@suekay111)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10280704)
 * I’d be very interested in finding out if there is going to be an upgrade to this
   too please.
 *  [Mark](https://wordpress.org/support/users/markwt/)
 * (@markwt)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10290085)
 * Hi [@barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/) ,
   [@suekay111](https://wordpress.org/support/users/suekay111/)
 * We are working on GDPR compliance. Will be updating in couple of days.
 *  [robertosalemi](https://wordpress.org/support/users/robertosalemi/)
 * (@robertosalemi)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10295791)
 * Thanks [@markwt](https://wordpress.org/support/users/markwt/),
    I follow your
   upgrade!
 *  [pako69](https://wordpress.org/support/users/pako69/)
 * (@pako69)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10297851)
 * Hi
    I installed the latest version related to GDPR, but what are the new stuff
   about it? Thanks
 *  Thread Starter [barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * (@barbarawebnauta)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10298986)
 * Hi,
    I installed too, but I can’t understand how it works! We must insert our
   wordpress cookie (why insert is like a post? I have SEO tools too!), then we 
   have Reject button (what does it? block all cookies before navigate the site?),
   the [cookie_audit] that print a really bad (not nice) table below the message
   bar (how can I set colors of this cookie_audit?) and the [delete_cookies] that
   in this moment make it nothing (how can I set the url?) For me, in this moment,
   this isn’t GPDR compliance…
 *  [Mark](https://wordpress.org/support/users/markwt/)
 * (@markwt)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10299022)
 * Hi [@barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/),
 * Please check [here](http://cookielawinfo.com/user-guide/) in the section “The
   Cookie Audit Table” for styling audit table.
 * We are storing a cookie “viewed_cookie_policy” for each activity ( accept / reject).
   If user accepts, the value will be “yes”. If the user rejects, the value will
   be “no”. According to that site owner can restrict their cookies. Also, Reject
   will delete all the cookies that are stored in non-necessary category by the 
   admin.
 * Try below JS code in your site like this, here it will enable for GA ( Google
   Analytics ) if the consent is yes.
 *     ```
       <script type="text/javascript"
        src="//cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js">
       var consent_value = $.cookie("viewed_cookie_policy");
   
               if (consent_value == 'yes')
               {
                   enableGoogleAnalytics(); // enable GA inside this function
               }
           }
       ```
   
 *  Thread Starter [barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * (@barbarawebnauta)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10299059)
 * Hi, thanks for the userguide, I don’t know it!
    For the script, I don’t know 
   how to put it, my template is a buying product and I can’t put code myself. Why
   this script isn’t include in the plugin? Thanks.
 *  Thread Starter [barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * (@barbarawebnauta)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10299121)
 * How can we set font colour for [delete_cookies]? It doesn’t appear like “Text
   Colour” for “Cookie Law Message Bar” (I have backgroud colour blue and font colour
   white, but [delete_cookies] is the default grey, unreadable) Thanks.
 *  Thread Starter [barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * (@barbarawebnauta)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10314552)
 * “Also, Reject will delete all the cookies that are stored in non-necessary category
   by the admin.”
 * Ok, I’m not stupid, I read this. But in this moment I have all my Cookie table
   full of Cookies with Sensitivity=non-necessary, and Reject doesn’t function!
 *  [Mark](https://wordpress.org/support/users/markwt/)
 * (@markwt)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10314637)
 * [@barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * When user click on the “Delete Cookie” coming with [delete_cookie] shortcode,
   it deletes the consent cookie (viewed_cookie_policy). “Reject” will delete non-
   necessary cookies stored
 * In-order to restrict the cookie according to the consent, you may need to render
   your script through our plugin settings page like in the [screenshot](https://prnt.sc/jkw7nc)(
   sample Google Analytics rendering according to the consent)
 *  Thread Starter [barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * (@barbarawebnauta)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10314677)
 * “To delete non-necessary cookies stored, users can click on the “Delete Cookie”
   coming with [delete_cookie] shortcode.”
 * Why in the section “Using the shortcode” of plugin I read:
    “[delete_cookies]
   This shortcode will display a normal HTML link which when clicked, will delete
   the cookie set by Cookie Law Info (this cookie is used to remember that the cookie
   bar is closed).” ??
 * It seems that [delete_cookies] delete the only “viewed_cookie_policy” cookie,
   the cookie you set on accept.
 * Or not?
 *  [Mark](https://wordpress.org/support/users/markwt/)
 * (@markwt)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10314693)
 * [@barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * It was a mistake, updated the [last reply](https://wordpress.org/support/topic/how-about-gdpr/#post-10314637)
 *  Thread Starter [barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * (@barbarawebnauta)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10314709)
 * Updated a reply isn’t serious.
 * So, again, “Reject” will delete non-necessary cookies stored?
    Again: in this
   moment I have all my Cookie table full of Cookies with Sensitivity=non-necessary,
   and Reject doesn’t function!
 * What? How?
 *  [Mark](https://wordpress.org/support/users/markwt/)
 * (@markwt)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10314733)
 * [@barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * Cookie key will be identified with the Cookie ID: value you are adding in the
   cookie law in backend.
 * Eg:- For Google Analytics, you may need to add
 * > _ga
 *  in the column of Cookie ID:
 * Please check and let us know if any issues after that,
 *  [pako69](https://wordpress.org/support/users/pako69/)
 * (@pako69)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/how-about-gdpr/#post-10314873)
 * barbarawebnauta: could you please be less agressive with the author please?
 * Don’t forget that here plugins are free and authors do their best…
 * Perhaps this plugins is a little bit tricky to be configured to achieve what 
   you want but it has the merit of existing.
 * Thanks

Viewing 15 replies - 1 through 15 (of 19 total)

1 [2](https://wordpress.org/support/topic/how-about-gdpr/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/how-about-gdpr/page/2/?output_format=md)

The topic ‘How about GDPR?’ is closed to new replies.

 * ![](https://ps.w.org/cookie-law-info/assets/icon.svg?rev=3007243)
 * [CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice)](https://wordpress.org/plugins/cookie-law-info/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/cookie-law-info/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/cookie-law-info/)
 * [Active Topics](https://wordpress.org/support/plugin/cookie-law-info/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/cookie-law-info/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/cookie-law-info/reviews/)

 * 19 replies
 * 5 participants
 * Last reply from: [barbarawebnauta](https://wordpress.org/support/users/barbarawebnauta/)
 * Last activity: [7 years, 11 months ago](https://wordpress.org/support/topic/how-about-gdpr/page/2/#post-10315445)
 * Status: resolved