Expand my Community achievements bar.

SOLVED

Google gtag Issue

Avatar

Level 6

anyone successfully implement and use the new Google gtag code in Adobe Launch. we keep getting errors as a result of there code when we test in dev. I thought I would ask here before contacting Google directly to see if there was a remedy.

Errors:

  • Uncaught TypeError: dataLayer.push is not a function
  • [Core] Script error. - : 0
  • Uncaught TypeError: a.slice is not a function

We also tried using the new gtag extension someone built but get the same errors. One of the issues is probably because we have an object called "dataLayer" that loads all our pageload data as well. The slice error is coming from the first script tag that references GTM source: src="https://www.googletagmanager.com/gtag/js?id=AW-someaccountcode".

1621921_pastedImage_0.png

1 Accepted Solution

Avatar

Correct answer by
Employee

This change has been pushed to production.  In the configuration view you can customize the DataLayer name:

gtag.png

View solution in original post

12 Replies

Avatar

Level 9

push and splice are methods of the JavaScript Array object​. So if you have an object called dataLayer and the gtag expects the dataLayer to be an array, this error makes sense. a probably is just a reference to the same dataLayer object within a function. You probably have to rename your custom dataLayer object so it doesn't interfere with what gtag expects.

Avatar

Level 6

unfortunately we cannot change the name of our main object as this is used globally for data collection.

thanks

Avatar

Level 9

I don't know gtag, so I can't help there, but maybe you can configure gtag so the object it relies on is called differently.

One other, more complex solution would be to "mask" it by implementing all the array methods in your object and use them to operate on an internal array:

dataLayer._gtagDataLayer = [];

dataLayer.push = function(obj) {

    this._gtagDataLayer.push(obj);

};

dataLayer.pop = function() {

    return this._gtagDataLayer.pop();

};

//etc.

But again, maybe the dataLayer object from gtag has other functionality as you can do crazy stuff with javascript, so probably also ask in their forums how to proceed.

Avatar

Employee

We are working on adding a new parameter to the gtag extension configuration view that would allow you to rename Google's dataLayer to something else so that it would not conflict.  Hope to be able to get it released before too long but not exact date commitments at this point.

Avatar

Level 6

that would be great, can't wait.

thanks for the feedback

Avatar

Level 1

Has there been an update on this?

Avatar

Employee

Yeah this is code-complete and being tested but Adobe has a polciy to not release or change production code during the holiday when it's a very sensative time and there is less appetite for risk.  So this is likely to be released the first week of January.   If you are willing to test it before then, we can upload it to your org as a Private Extension and you could use it sooner.  It would however mean re-creating your rules if you wanted toswitch to the public one in January and take advatange of future updates.  But let us know.

Avatar

Level 1

Thank you for following up. Is there something similar for DTM?

Avatar

Employee Advisor

It will just be for Launch. You will want to use custom code if you intend to do it for DTM.

Avatar

Correct answer by
Employee

This change has been pushed to production.  In the configuration view you can customize the DataLayer name:

gtag.png

Avatar

Level 6

awesome!! thank you for adding the custom datalayer name. Everything works great now

Avatar

Employee

Hi Brandon,

Is there a way to address this same issue within DTM? Any help on why this error occurs would be helpful.

Is the issue due to google expecting the data layer to be an object rather than an array? That's what is suggested here Google Tag Manager error: Uncaught TypeError: w[l].push is not a function - Stack Overflow Could the issue be addressed within dtm by placing the data layer in an array?