Recent Posts
- (09/10) Fixing Warning: the ECDSA host key for 'github.com' differs from the key for the IP addressTAGS:Web Server Admin
- (12/26) CakePHP 3 - Getting List of Column Definitions from a Table (like schema())TAGS:CakephpCake3
- (09/14) Change Order of Loaded Behaviors in CakePHP 3TAGS:Cake3CakephpWeb ProgrammingPhp
- (05/29) CakePHP 3 - Accept JSON Header Only Working When Debug FalseTAGS:Web ProgrammingCakephpCake3
- (05/23) Remove All Events from Google Calendar (Reset Calendar)TAGS:Web ProgrammingPhp
- (11/08) Google Tag Manager (GTM) Not Firing Default PageView EventTAGS:Web ProgrammingJavascriptGoogle Tag Manager
- (10/13) In PHP, how do you get __toString() Magic Method Result without calling echo?TAGS:CakephpCake3Cakephp 13PhpWeb Programming
- (11/14) Getting output from shell_exec() at all timesTAGS:Web ProgrammingWeb Server Admin
Subscribe to my feed
MainelyDesign.com Blog
Google Tag Manager (GTM) Not Firing Default PageView Event
Posted on 11/08/2017 at 12:21 pm by Kevin Wentworth
Viewed 8,419 times | 0 comments
We had an interesting issue here today regarding Google Tag Manager not firing the default PageView event. Instead it was firing the /gtm.js event. WTF?!
Turns out, the system we were using was reading event: 'gtm.js' in the GTM container snippet as a link to a javascript resource. So, it was turning the "url" into an absolute path, like so: event: '/gtm.js'.
Google Tag Manager doesn't know what to do with an event named "/gtm.js"
How were we going to solve this? A little ASCII magic to the rescue.
String.fromCharCode(46) to the Rescue!
- (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':<br />new Date().getTime(),event:'gtm'+String.fromCharCode(46)+'js'});var f=d.getElementsByTagName(s)[0],<br />j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=<br />'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);<br />})(window,document,'script','dataLayer','GTM-XXYXYXY');
Instead of:
- (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':<br />new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],<br />j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=<br />'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);<br />})(window,document,'script','dataLayer','GTM-XXYXYXY');
BOOM!!!
Tags for Google Tag Manager (GTM) Not Firing Default PageView Event
Web Programming | Javascript | Google Tag Manager
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!