HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Cookies rgpd banner

Hello.


How can I put a cookies rgpd banner on my site? Is there any plugin? I did not find it.


Thanks.

Tagged:

Comments

  • Options
    edited September 2023

    I have one.


    But it must have a opt-out button, to be able to manage cookies after accepting, etc. and I don't know how to do it.


    If somebody need it:

    <!-- AVISO DE COOKIES -->
    <style tyle="text/css">
    :root{
    --color-fondo-aviso: #fff;
    --color-del-parrafo: #000;
    --tamano-parrafo: 16px;
    --color-boton-aceptar: #00748e;
    --color-texto-boton-aceptar: #fff;
    --color-texto-leer-mas: #00748e;
    }
    .cookie-container{position:fixed;bottom:-100%;left:0;right:0;z-index:999999999999999;transition:400ms;background:var(--color-fondo-aviso);padding:15px;box-shadow:1px 7px 14px -5px rgba(0,0,0,.15);text-align:center;font-size:var(--tamano-parrafo)}
    .cookie-content{color:var(--color-del-parrafo)}
    .cookie-container.active{bottom:0}
    .cookie-content .buttons{display:inline-flex;align-items:center;justify-content:center}
    .cookie-content .buttons button{padding:10px 15px;border:none;outline:0;color:var(--color-texto-boton-aceptar);font-size:16px;font-weight:500;border-radius:5px;background:var(--color-boton-aceptar);cursor:pointer;transition:all .3s ease}
    .cookie-content .buttons button:hover{transform:scale(0.97)}
    .buttons .item{margin:0 10px}
    .cookie-content .buttons a{color:var(--color-texto-leer-mas);font-weight:700}
    </style>
    
    
    <div class="cookie-container">
    <div class="cookie-content">
    Este sitio utiliza cookies para mejorar tu experiencia.
    <div class="buttons">
    <button class="item">Acepto</button>
    <a class="item" href="/politica-de-privacidad-y-cookies/" target="_blank">Leer más</a>
    </div> 
    </div> 
    </div>
    
    
    <script>
    const cookieContainer = document.querySelector(".cookie-container");
    const cookieButton = document.querySelector(".buttons .item");
    
    
    
    cookieButton.addEventListener("click", () => {
    cookieContainer.classList.remove("active");
    localStorage.setItem("cookieBannerDisplayed", "true");
    });
    
    
    
    setTimeout(() =>{
    if (!localStorage.getItem("cookieBannerDisplayed")) {
    cookieContainer.classList.add("active");
    }
    }, 2000);
    </script>
    

    I found this: https://www.cssscript.com/advanced-cookie-consent-manager/

    I'm going to try.


    Thanks!

Sign In or Register to comment.