• Resolved nicole0155

    (@nicole0155)


    I’m using Google Analytics 4 with the plugin Option 1: Direct integration “Integrations(NEW)”. The plugins seems working, since only calls analitics/ads tags after consent.

    However, I have a notification from google that I’m not using consent:

    “End users in the European Economic Area (EEA) must provide consent for their personal data to be shared with Google for advertising purposes, per EU user consent policy”

    Is it necessary any additional configuration, to google receive the correct information?

    Thank you.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter nicole0155

    (@nicole0155)

    I have made the following changes, and it seems working now

    1. To include the header code script manually at the top of all pages
    <script nowprocket>// Define dataLayer and the gtag function.window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}// Set default consent to 'denied' as a placeholder// Determine actual values based on your own requirementsgtag('consent', 'default', {  'ad_storage': 'denied',  'ad_user_data': 'denied',  'ad_personalization': 'denied',  'analytics_storage': 'denied'});</script>

    2) At the GDPR Cookie Compliance Plugin (CCPA ready) admin plugin, included additional code on the “additional cookies” with gtag(‘consent’, ‘update‘ like for example:

    <script nowprocket>
    // Define dataLayer and the gtag function.
    window.dataLayer = window.dataLayer || [];
    function gtag(){dataLayer.push(arguments);}
    
    // After Accepting Additional Cookies
    gtag('consent', 'update', {
    'ad_storage': 'granted',
    'ad_user_data': 'granted',
    'ad_personalization': 'granted'
    });
    </script>
    
    

    According to tag_assistant it seems working now.

    Can you please confirm that such steps are required to have the “Consent” working with your Direct integration Plugin option (or did I miss something else)?

    Thanks.

    Plugin Author Moove Agency

    (@mooveagency)

    Hello,

    That’s correct.

    The above is what the ‘Direct Integration’ method does out of the box, however, if you found your own way to achieve that, that’s great.

    More details on this topic is here:

    https://support.mooveagency.com/topic/ga-gtm-consent-settings/

    Hope this helps.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Google Consent with Option 1: Direct integration Plugin’ is closed to new replies.