


Hi all,
I need to implement Google Analytics in DTM but dynamically change the tracking ID based on the domain name, we currently override the Adobe report suite on Adobe Analytics tool using an IF statement but not sure how to do the same thing on GA tool?
Any help will be great
Cheers
Views
Replies
Sign in to like this content
Total Likes
Answered my own question...
Example below added to customise page code in the GA tool:
var gaProperty //store the property if(location.host == ("xxx")) { gaProperty = 'UA-1234567-1'; } else if (location.host == ("xxx")){ gaProperty= 'UA-1234567-1'; } else { gaProperty= 'UA-1234567-1'; } _gaq.push(['_setAccount', gaProperty]);
Views
Replies
Sign in to like this content
Total Likes
Answered my own question...
Example below added to customise page code in the GA tool:
var gaProperty //store the property if(location.host == ("xxx")) { gaProperty = 'UA-1234567-1'; } else if (location.host == ("xxx")){ gaProperty= 'UA-1234567-1'; } else { gaProperty= 'UA-1234567-1'; } _gaq.push(['_setAccount', gaProperty]);
Views
Replies
Sign in to like this content
Total Likes