Tagged: x
-
AuthorPosts
-
March 26, 2017 at 10:21 am #1420691
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!
March 26, 2017 at 10:23 am #1420693This reply has been marked as private.March 26, 2017 at 12:36 pm #1420765Hi 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
March 28, 2017 at 8:56 am #1423016thanks works like a charm
March 28, 2017 at 12:37 pm #1423238You are most welcome.
-
AuthorPosts