• Resolved quu

    (@quu)


    After upgrade to latest version 3.2.0, on any page, almost any link I click [even right-click] is added a huge string as a value to the parameter “_gl”.

    For example an href to “/about/” will become “/about/?_gl=11ez……QMWQYVVLDB*MTcwOTA2MjgwNS4xLjEuMTcwOTA2MzUyNS4wLjAuMA. before navigating to it.

    When I disable the plugin this goes away, and promptly returns as it enable it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support CookieYes Team

    (@cookieyesteam)

    Hi @quu,

    Greetings from CookieYes!

    These additional parameters seem to be added via Google Analytics, for cross-domain tracking.

    You can find out more about this in this documentation.

    Plugin Support CookieYes Team

    (@cookieyesteam)

    Hi @quu,

    This thread has been inactive for a bit, so we are going to mark it as resolved now. Please feel free to open a new thread or follow-up if you have any further questions or still need help.

    I have had the same problem. I don’t think this has anything to do with cross-domain tracking. I got rid of it by setting the URL passthrough option to false.?

    Method 2: Implementation using the custom script

    https://www.cookieyes.com/documentation/google-consent-mode-v2/

    <script>
        window.dataLayer = window.dataLayer || [];
        function gtag() {
            dataLayer.push(arguments);
        }
        gtag("consent", "default", {
            ad_storage: "denied",
            ad_user_data: "denied", 
            ad_personalization: "denied",
            analytics_storage: "denied",
            functionality_storage: "denied",
            personalization_storage: "denied",
            security_storage: "granted",
            wait_for_update: 500,
        });
        gtag("set", "ads_data_redaction", true);
        gtag("set", "url_passthrough", false);
    </script>
    
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘huge string of parameters after with any link click’ is closed to new replies.