CookieYes Team
Forum Replies Created
-
Hi @cvioletis
This thread has been inactive for a bit, so we are going to mark it as resolved now. Please feel free to open a new thread or follow-up if you have any further questions or still need help.
Hi @tutumu
Here is the complete path https://akraclima.com/wp-content/plugins/cookie-law-info/lite/frontend/js/gcm.min.js
It might not work as expected if you don’t exclude this file from optimisation.
Hi @jamesada
This thread has been inactive for a bit, so we are going to mark it as resolved now. Please feel free to open a new thread or follow-up if you have any further questions or still need help.
Hi @2candela2
This thread has been inactive for a bit, so we are going to mark it as resolved now. Please feel free to open a new thread or follow-up if you have any further questions or still need help.
Hi @tutumu
Please exclude the GCM script (gcm.min.js) added by the plugin from JS optimisation.
Please add the code to the Head itself. And also, don’t miss the backtick.
Hi @123nadav
Greetings from CookieYes!
For compliance with the Florida Digital Bill of Rights (FDBR), you can use the opt-out banner available in the plugin, which aligns with many FDBR requirements by allowing users to opt out of data tracking.
Hi @simon_a6
This thread has been inactive for a bit, so we are going to mark it as resolved now. Please feel free to open a new thread or follow-up if you have any further questions or still need help.
Hi @aeragr
This thread has been inactive for a bit, so we are going to mark it as resolved now. Please feel free to open a new thread or follow-up if you have any further questions or still need help.
This thread has been inactive for a bit, so we are going to mark it as resolved now. Please feel free to open a new thread or follow-up if you have any further questions or still need help.
Please find the modified code here:
<script>
if (window.location.pathname !== '/sito2/privacy/') {
const cky_style = document.createElement('style');
cky_style.innerHTML =.cky-btn-revisit-wrapper{display: none !important;}
;
document.head.appendChild(cky_style);
}
</script>Hi @cvioletis
Greetings from CookieYes!
At the moment, we don’t have an export/import feature for transferring settings between sites.
Please share the site URL where you have implemented this.
Please ensure the “Revisit Consent Button” is enabled.
You can add the script to your active theme’s
header.php
file or use a third-party plugin that allows you to insert scripts into the<head>
section.In the code provided previously, please add a backtick
`
before.cky-btn-revisit-wrapper
and after!important;}
to ensure it functions correctly. It seems WordPress may have removed the backtick from my previous response.Greetings from CookieYes!
To make the revisit icon visible on just one page, please try the following custom script:
<script>
if (window.location.pathname !== '/your-page-slug
') {
const cky_style = document.createElement('style');
cky_style.innerHTML =.cky-btn-revisit-wrapper{display: none !important;}
;
document.head.appendChild(cky_style);
}
</script>Replace
your-page-slug
with the specific slug of the page where you’d like the revisit icon to be visible. This will hide the button on all other pages.