GTM with partytown does not work
See original GitHub issueI’m trying to use Google Tag Manager with Partytown and Nuxt 3.
- It works when I disable Partytown, so GTM + GA is configured correctly. I see all event and stuff pop up
- Nothing happens when I enable Partytown. No Events in GTM, nothing in GA, dataLayer empty
nuxt.config.js
import { defineNuxtConfig } from 'nuxt';
export default defineNuxtConfig({
modules: [
'@nuxtjs/partytown',
],
partytown: { forward: ['dataLayer.push'] },
app: {
head: {
script: [
{
children: `
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-XXXXXX');
`,
type: 'text/partytown',
},
],
},
},
});
I then use window.dataLayer.push({ event: 'pageView' })
--> nothing happens
I see that partytown correctly adds the scripts with text/partytown-x
to head
I’ve tried another head implementation:
script: [
{
children: `
window.dataLayer = window.dataLayer || [];
`,
},
{
src: 'https://www.googletagmanager.com/gtm.js?id=GTM-P6KLMD5',
async: true,
type: 'text/partytown',
},
],
Both versions work, as long as I disable text/partytown
. As soon as I enable partytown, It seems nothing is happening at all. I know that the GTM Debugger seems not to work with Partytown, but I don’t see anything happen, also not in GA.
I’ve set things up according to this docs and your readme (which is incomplete on gtm)
I can’t figure out what is wrong as partytown should be more or less a “drop-in”, not requiring further config.
Issue Analytics
- State:
- Created a year ago
- Reactions:14
- Comments:15 (2 by maintainers)
Top Results From Across the Web
Google Tag Manager - Partytown - Builder.io
Google Tag Manager uses the dataLayer array to send events. In order for Partytown to forward the calls to window.dataLayer.push({..}) , the forward...
Read more >Does Party Town work with Google Tag Manager preview #81
I have Party Town is working with GTM and Analytics, however, when I "Preview" with GTM, it fails to connect. Is this something...
Read more >Troubleshooting analytics and Partytown | FastStore
Debugging Google Tag Manager (GTM) and Google Analytics (GA) using Google Tag Assistant is, as of now, not possible if you're using Partytown....
Read more >party town gtm example - CodeSandbox
CodeSandbox is an online editor tailored for web applications. ... dataLayer.push. Partytown dataLayer.push(). Console. 0. Problems.
Read more >Improve your website performance using Partytown type in ...
The browser won't recognize that type ignoring the script tag and then Partytown will load that script inside a web worker. This works...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I tried to install and enable this module, but can confirm that nothing happens. There is no output in the console about Partytown, no new Partytown scripts, no working GTM.
Setup is Nuxt v2.15.8, using:
It seems the module does nothing. Adding
debug: true
to the config also does nothing.Today I gave it another go without success,
I think im getting closer to get it to work, your help would be greatly appreciated @danielroe.
this is the code im using in nuxt.config: