Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
539 views
in Technique[技术] by (71.8m points)

magento2 - Google Tag Manager Incomplete Funnel Issue

i've setuped GTM on my online store (magento2 using a custom extensio). [i've done this on several stores with success]

On one particular store we are getting some issues on the funnels, the Product Views and Transactions arent being recorded.

Below is the GA funnel

GA Funnel Image

Using GTM debug, i've isolated the datalayers for the product page and for the success page. The datalayers are below

--- Product Page dataLayer ---

{
  gtm: {start: 1611324270479, uniqueEventId: 4},
  event: 'gtm.load',
  ecommerce: {
    detail: {
      products: [
        {
          name: 'Bracelet',
          id: '501',
          price: '3.90',
          category: 'Man'
        }
      ]
    }
  }
}

--- Checkout Success Page dataLayer ---

{
  gtm: {start: 1611324363183, uniqueEventId: 5},
  event: 'gtm.load',
  ecommerce: {
    purchase: {
      actionField: {
        id: '000000054',
        affiliation: 'Store Name - Store Name - PT',
        revenue: '6.9000',
        coupon: '',
        tax: '1.2900',
        shipping: '2.4400'
      },
      products: [
        {
          name: 'Bracelet',
          id: '501',
          price: '3.17',
          category: 'Man',
          list: 'Man',
          quantity: '1.0000'
        },
        {
          name: 'Watch',
          id: '61',
          price: '20.24',
          category: 'Man',
          list: 'Man',
          quantity: '1.0000'
        }
      ]
    },
    currencyCode: 'EUR'
  }
}

Can someone help me understand why this 2 steps arent being populated with data.

Thanks

question from:https://stackoverflow.com/questions/65846806/google-tag-manager-incomplete-funnel-issue

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Should your event for the Checkout Success be event: 'purchase' and not event: 'gtm.load'.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...