Webflow Analytics: Privacy-First Tracking Without Code
Install cookieless analytics on Webflow in two minutes via custom code, track button clicks as events, and skip the cookie banner entirely.
Webflow sites are usually marketing sites, and marketing sites suffer most from the standard analytics bargain: install GA, add the cookie banner, lose a third of the data to consent refusals, and slow down the very pages you polished in the Designer. The cookieless route skips all four steps — and on Webflow it takes about two minutes, no code skills required.
Setup: one custom-code block
- In Webflow: Site settings → Custom code → Head code.
- Paste the tag:
<script
defer
src="https://clycyo.com/tracker.js"
data-tracking-id="YOUR_TRACKING_ID"
></script>- Publish. Pageviews, referrers, UTM campaigns, countries, devices, load times, and Web Vitals start arriving — sitewide, including CMS Collection pages.
Tracking button clicks without code
For specific conversions — 'Book a demo', pricing CTAs — add a small page-level script (Page settings → Before </body> tag) that watches clicks by attribute:
<script>
document.addEventListener('click', (e) => {
const el = e.target.closest('[data-event]');
if (el) window.webanalytics?.track(el.dataset.event, {
page: location.pathname,
});
});
</script>Then in the Designer, give any button a custom attribute data-event="demo_requested". Designers add tracking by setting an attribute; nobody touches code again. The same pattern covers outbound links and form submissions.
The cookie banner question
If analytics was the only reason for your consent banner — true for most Webflow marketing sites — cookieless tracking removes the legal need for it. That is not just an aesthetic win: banners cost real conversions and CLS, quantified here. Check the rest of your stack first (embedded videos and remarketing pixels have their own rules), then enjoy the cleaner page.
Reading the results
- Which campaigns convert: tag every ad and email with UTMs; first-touch credit persists per visitor.
- Which pages are slow: per-page load times from real visitors — Webflow sites are fast until the fifth hero video, and now you will see exactly when.
- What visitors do: clicks captured automatically, plus your named events for the moments that pay.
The free tier (10k events/month, forever) fits most Webflow properties with room to spare — and you can preview the dashboard on our live data at /open before touching your site settings.