Hi @cookieyesteam
I checked with the below methodology and tried giving consent and not and looks it is working just fine but can you check it also please from your end if the implementation is now working?
Checking if Google Consent Mode is implemented correctly is a mess!
With the “GCM Checker,” it doesn’t have to be.
If you work in technical marketing, you know the importance of Google Consent Mode. Debugging using Google Tag Manager requires access and takes time, and using the Console to type “DataLayer” is simply not very efficient.
This is why I have created a GCM Checker Bookmarklet, which will display an alert informing you if Google Consent Mode is installed and behaving as intended WITH JUST 1 CLICK!
Step 1:
Create a Bookmark in your Bookmarks bar.
Step 2:
Name it “GCM Checker.”
Step 3:
Copy and paste this code as the Bookmark URL:
javascript:(()=>{let l=s=>s===undefined?””:s?”granted”:”denied”;if(!window[“google_tag_data”]){alert(“No Consent Mode data found”);return;}var g=”ics” in google_tag_data ? google_tag_data.ics.entries : null, i=””, u=””, message=””; for(var a in g){i=l(g[a][‘default’]);u=l(g[a][‘update’]); if(i===”” && u===””) continue; message+=a.toUpperCase()+”:\n”+(i!==””?” Default: “+i+”\n”:””)+(u!==””?” Update: “+u:””)+”\n”;} if(message===””){alert(“No default Consent settings found”);} else{alert(message.trim());}})();