where i can check utm persistence in documentation?
You can find information about UTM persistence in the following places in Mixpanel's documentation:
JavaScript SDK docs โ The section on tracking UTM tags explains that UTM parameters are persisted as super properties by default, and how to disable this behavior using stop_utm_persistence: true. [Track UTM Tags]
Traffic Attribution best practices โ The web attribution section covers how UTM parameters are tracked and persisted, including the recommendation to disable persistence for compatibility with attribution models. [Web Attribution]
FAQs โ The "Sending Data to Mixpanel" FAQ section addresses both first-touch and last-touch UTM tracking, and mentions the stop_utm_persistence option. [Sending Data FAQ]
To disable UTM persistence, you can initialize the SDK like this:
mixpanel.init('YOUR_PROJECT_TOKEN', {
stop_utm_persistence: true
});Mixpanel recommends disabling UTM persistence (stop_utm_persistence: true) for the best compatibility with their Attribution feature.
โน๏ธย Tip: Mention @kapa.ai in the thread for follow-ups or DM the app for 1-to-1 help.
