谷歌分析:跟踪客人结帐和注册用户结帐计数

问题描述:

我有电子商务网站,我想跟踪有多少用户选择客人结帐和多少注册用户购买。谷歌分析:跟踪客人结帐和注册用户结帐计数

  1. 用户点击“继续结帐”。 (是他已经登录或没有?)结账登录
  2. 用户决定如何进行(有多少用户选择哪个选项?)
  3. 用户完成付款确认页面,并进入支付服务提供商流
  4. 用户完成支付并感谢你的页面或用户不完成付款,并再次尝试或不。
  5. 5.

可以用吗? https://developers.google.com/analytics/devguides/collection/analyticsjs/ecommerce

https://developers.google.com/analytics/devguides/collection/analyticsjs/events

所以,我该怎么办呢?提前致谢。

The Google Analytics basically works as two ways. 

1. Page Tracking 
2. Event Tracking 

Before you track the users first find out what kind of users (i.e Free User or Registered User). 

Hope you have the Google Analytics key. Please include the two functions as below. 

//Track the events 

trackGAEvent(eventName, eventAction, eventCategory) 

{ 
//Do your stuff here 
} 

//Track the page views 

trackGAPageEvent(eventName, eventAction, eventCategory) 

{ 
//Do your stuff here 
} 

Based on the above functions you'll track. 

您可以相应地调用这些函数。