Questions tagged [cookieyes]

Cookieyes is a freemium service to manage visitor's preferences about cookies to make the website General Data Protection Regulation (GDPR) compliant. It provides a cookie banner from which the visitor can choose which cookies (s)he likes to consent to or deny.

Before submitting a question

  • Ensure you have the latest versions of CookieYes script.
  • Check for conflict with any other script.
  • Remember, Stack Overflow is not an official support channel for CookieYes.
5 questions
5
votes
2 answers

Cookies are getting set before consent

I was trying to integrate cookieyes GDPR solution to a WP website. Below is the code for GTM and coookieyes that are added in the website. But the cookies ( _ga , _gid and gat_gtag_UA_xxxxxxxxxxx_1) are getting set even if the accept button is…
Sarath G.P
  • 61
  • 5
3
votes
2 answers

How to add a script at the beginning of the tag before all other scripts in WordPress

I've been looking for a few days in the stack overflow here but I can't find the answer to my problem. I'm trying to add the Cookie Yes script, to insert the cookie banner on my WordPress site. The script must be loaded at the beginning of the tag…
2
votes
1 answer

How to remove SSL certificate check/error with puppeteer in headless mode.?

Tried below code but getting an error. Error: net::ERR_SSL_VERSION_OR_CIPHER_MISMATCH at https://www.xxxxxxsolutions.com/ const puppeteer = require('puppeteer'); (async () => { const browser = await puppeteer.launch({ignoreHTTPSErrors: true,…
1
vote
2 answers

WordPress session keeps refreshing inconsistently

I am trying to create a visitor counter on my wordpress website using the following code: add_action( 'init', 'session_counter' ); function session_counter() { $date = date('d/m/Y'); $session_data = get_option( 'session_counter'); …
1
vote
1 answer

Puppeteer bypass recaptcha and fetch all cookies in headless mode

const puppeteer = require('puppeteer'); (async () => { const browser = await puppeteer.launch({args: ['--no-sandbox']}); const page = await browser.newPage(); try { await page.goto('https://www.allabout*****.org', {waitUntil:…
mujuonly
  • 11,370
  • 5
  • 45
  • 75