Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1420691

    ZerotoOne
    Participant

    hey there,
    I just wanted to update my cookie consent banner and applied the code to the global js.
    the problem is, that the banner is not visible after pasting the code :/

    <link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
    <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
    <script>
    window.addEventListener("load", function(){
    window.cookieconsent.initialise({
      "palette": {
        "popup": {
          "background": "#edeff5",
          "text": "#838391"
        },
        "button": {
          "background": "#4b81e8"
        }
      },
      "theme": "edgeless",
      "position": "bottom-right",
      "content": {
        "message": "Diese Website verwendet Cookies. Durch die Nutzung unserer Services erklären Sie sich damit einverstanden, dass wir Cookies setzen.",
        "dismiss": "Zustimmen",
        "link": "Mehr erfahren"
      }
    })});
    </script>

    thanks for your help!

    #1420693

    ZerotoOne
    Participant
    This reply has been marked as private.
    #1420765

    Thai
    Moderator

    Hi There,

    Please add the following code under functions.php file locates in your child theme instead:

    function x_wp_head() {
    	?>
    	<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
    	<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
    	<script>
    	window.addEventListener("load", function(){
    	window.cookieconsent.initialise({
    	  "palette": {
    	    "popup": {
    	      "background": "#edeff5",
    	      "text": "#838391"
    	    },
    	    "button": {
    	      "background": "#4b81e8"
    	    }
    	  },
    	  "theme": "edgeless",
    	  "position": "bottom-right",
    	  "content": {
    	    "message": "Diese Website verwendet Cookies. Durch die Nutzung unserer Services erklären Sie sich damit einverstanden, dass wir Cookies setzen.",
    	    "dismiss": "Zustimmen",
    	    "link": "Mehr erfahren"
    	  }
    	})});
    	</script>
    	<?php
    
    }
    add_action( 'wp_head', 'x_wp_head' );

    Hope it helps 🙂

    #1423016

    ZerotoOne
    Participant

    thanks works like a charm

    #1423238

    Prasant Rai
    Moderator

    You are most welcome. 🙂