Banner display delay OR on first page interaction
T
Tuco
Would be good to optionally choose which scenario invokes the banner.
So instead of just showing the banner after X ms. Be able to choose that it be shown only after an interaction on the page e.g. a click or % of scroll.
This allows the visitor to manifest interest before getting bugged. Which could increase engagement.
C
Christoffer Nicolai Lumbye Bjørnsen
I believe our requests share some similarities, although the endgoal is not quite the same. https://updates.cookie-script.com/feature-requests/p/performance-lcp-issues-when-crawlers-access-the-site
Jānis Elmeris
You can achieve this with a custom JS code.
At first, hide the automatic banner:
window.addEventListener('CookieScriptLoaded', function() {
CookieScript.instance.hide();
});
Then write some JS that detects the scenario, upon which open the banner:
(I'm not from the support, just another user.)