BadgeMan
BadgeMan
CDCloudflare Developers
Created by BadgeMan on 1/24/2025 in #zaraz
GA4 server side response returns 204
Cool, thanks!
4 replies
CDCloudflare Developers
Created by BadgeMan on 1/24/2025 in #zaraz
GA4 server side response returns 204
Any help appreciated.
4 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
No description
30 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
No description
30 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
I am not using GTM anymore since we completely migrated to Zaras. It took some time to figure out how to setup the consent in Zaraz, but we finally got it working (in GA4 and ADS). Maybe @yo'av can compare our configuration with yours?
30 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
Wait.... this is a thread right? Darn... Discord is so confusing to me sometimes... Sorry! How / where to continue?
30 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
No description
30 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
I only use one remarketing action... But I had to figure it all out myself... Don't know what's the best...
30 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
No description
30 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
No description
30 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
@yo'av told me that if you use a custom HTML action the code may fire too late... (or too early?). Since we put the code in the HTML body container it took a while for Google Ads and Google Analytics to pick it up.... but finally got it working.
30 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
Ah.. yeah correct! Keep in mind that the script is not working as a Custom HTML action in Zaraz... the code needs to be in the code of the website (in the body container)
30 replies
CDCloudflare Developers
Created by BadgeMan on 10/23/2024 in #zaraz
This is what I see at the Diagnostics
I had to figure out a way to convert the cookie value 'true' and 'false' to 'granted' and 'denied' before pushing it to google_consent_update. This script worked for us: <script> document.addEventListener("zarazConsentChoicesUpdated", ()=> { strAnalytics = zaraz.consent.get('tFYh') ? 'granted' : 'denied'; strMarketing = zaraz.consent.get('WMnQ') ? 'granted' : 'denied'; zaraz.set("google_consent_update", { 'ad_storage' : strMarketing, 'ad_user_data' : strMarketing, 'ad_personalization' : strMarketing, 'analytics_storage' : strAnalytics }); }); </script>
30 replies