Skip to content Skip to sidebar Skip to footer

Override Referrer Google Analytics With Js Or Jq

I am trying to override the referrer of Google Analytics without touching the main Google analytics script or config. The problem is that it is not working. And Google Analytics fr

Solution 1:

Just came across this issue when trying to set iframe's parent URL as a referrer. I ended up doing this and it works:

gtag('set', {
    referrer: "https://your-referrer-url.com"
})

Post a Comment for "Override Referrer Google Analytics With Js Or Jq"