• Resolved Moxtell

    (@moxtell)


    Hi

    Nice plugin – BUT – it does not do anything to the cookies.
    Try to use it with Firefox Developer on fx. the plugin developers demopage (https://cookielawinfo.com/) – accepting og rejecting cookies does not make any difference. In fact the cookies are enabled from the start. Or am I missing something?
    Hopefully it will work some day. The cookies must all be deleted/diabled if clicking on reject.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @moxtell,

    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 owners can restrict their cookies. Also, Reject will delete all the cookies that are stored in

    non-necessary

    category by the admin.

    • This reply was modified 6 years, 6 months ago by markwt.
    Thread Starter Moxtell

    (@moxtell)

    OK??? But how is this done? If I test the plugin – bot at one of my sites and at your site inside Firefox Developer I see the cookies all the time – no matter if I accept og reject them…do I have to put in some code somewhere?

    I have tested severel cookie plugins bnow – yours and the gdpr-cookie-compliance plugin are the best free ones – but the only one I have tested so far. that really deletes cookies if one hits the delete cookie button is Cookiebot. But it is not free…

    I do not find anything inside your manual or in support about how to set up the plugin to delete all cookies?

    EDIT: Sorry – did just realize that you do not offer cookies to be deleted? So what is the point with rejecting/disable cookies, if they are still in use afterall? I don′t get it…please explain – thanks.

    • This reply was modified 6 years, 6 months ago by Moxtell.
    Thread Starter Moxtell

    (@moxtell)

    BTW – the feature with showing cookies used does not work either? I do not see any cookies listed in your table here: https://cookielawinfo.com/privacy-cookies-policy/

    @moxtell

    Try below JS code like this, here it will enable for GA 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
            }
        }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Cookies NOT deleted/rejected’ is closed to new replies.