Seeds
How can I tell if my UTMs are being stripped?
Watch for the symptoms, then test the chain. The tell-tale sign is a Direct or Unassigned bucket that's implausibly large; when 50% or more of...
Can CDNs strip UTM parameters?
Yes. A CDN can strip UTMs in two ways: cache rules that ignore or remove query strings to raise hit rates, and edge redirects or...
Why do UTM naming inconsistencies matter?
Because analytics tools match UTM values literally, so every inconsistency fragments your data. GA4 treats Email, email, and e-mail as three different sources, and utm_medium=cpc,...
How do I test if my UTMs are preserved?
Click your own tagged link and follow it to the end. Build a full URL with utm_source, utm_medium, and utm_campaign, open it on a real...
How does server-side tracking protect UTMs?
Server-side tracking captures UTM parameters the instant a request reaches your web server, before browsers, redirects, or privacy extensions can strip them. While client-side JavaScript...
Does coded UTM encoding affect my analytics reports?
No. When implemented correctly, coded UTM encoding is invisible to your analytics platform. The encoding happens on the link side — a compact string like...
How do I implement coded UTM protection on WordPress?
Capture and decode the campaign parameters server-side, in an early WordPress hook, before any redirect or browser script runs. The pattern is to read the...
How do I protect click IDs like gclid and fbclid?
Capture them server-side on the first request, before browsers and privacy tools can strip them. Click IDs such as gclid and fbclid arrive in the...
Can server-side tracking preserve my stripped UTMs?
Yes. Server-side tracking captures UTM parameters from the raw HTTP request the instant it reaches your web server, before any browser processing, redirect, or privacy...
How does UTM encoding work?
UTM encoding replaces verbose, easily recognised utm_* parameters with a short coded token that your server decodes back into the real campaign values. A link...
Is there a way to make UTMs invisible to privacy tools?
Yes, by changing where attribution lives and what the link looks like. Privacy tools strip parameters they recognise as tracking, so two moves help: route...
How do I hide UTM parameters from ad blockers?
Ad blockers don't usually strip UTM parameters from URLs; they block the third-party tracking scripts and requests that read them. So the fix isn't disguising...