UTM tracking query
Issue:
Findify's script replaces UTM query from URL on smart collection pages and search results.
Don't worry, most analytics platforms use the original URL instead of the replaced one. This means all provided data will be send to its recipient.
To make sure:
- Check for your analytics script position in HTML - it should be placed before our script.
- Open "developer tools" in your browser and check the request that was sent to the analytics platform. The original URL with correct query should be present in "query string parameters" section.
Manual Script
In case you are implementing your own analytics, or trying to access original url inside Google Tag Manager:
- Store the initial URL on the page
window.initialUrl = window.location.href
- Then use this value inside your script
Updated almost 5 years ago