Google Analytics(分析)添加到购物车数量

问题描述:

我们在Google Analytics(分析)中使用此代码格式,以将其添加到Google Analytics(分析)的购物车功能中.

We use this code format in google analytics corresponding to add to cart feature of google analytics.

function addToCarts() {
    ga('ec:addProduct', {
        'id': '12334',
        'name': 'methyly methly',
        'category': 'Clothing',
        'brand': '',
        'variant': '',
        'price': '100',
        'quantity': 40
    });
    ga('ec:setAction', 'add');
    // send this using event
    ga('send', 'event', 'enhanced ecommerce', 'button click', 'add to cart');
}
addToCarts();

在google analtics转换标签中的哪个位置----->>我能看到增加的产品数量吗?.它们是google Analytics(分析)转换中的一个部分---->增强的电子商务--->购物行为--->产品已添加到购物车(指标).但这仅反映了将产品添加到购物车的次数,而没有反映该产品添加到购物车的数量.

Where in google analtics convertion tab----->Enhanced ecommerce i can see quantity of product added?.Their is one section in google analytics conversion---->Enhanced ecommerce--->shopping behaviour--->Products add to cart(metric). But it only reflect how many times product was added to cart but not how many qunatity of that product to cart.

您可以在报告的摘要"标签中找到数量:转化->电子商务->产品性能(摘要"标签).

You can find the quantity in Summary tab of the report: Conversions-->Ecommerce-->Product performace (Summary tab).