Google analytics add to cart quantity

馋奶兔 提交于 2020-08-10 19:13:29

问题


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();

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.


回答1:


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



来源:https://stackoverflow.com/questions/63051804/google-analytics-add-to-cart-quantity

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!