About enhanced ecommerce events such as product_click, add or remove, it launch a event with UX category, click action and results or add to cart or remove to cart label. is it possible to configure the UX to a own category? I've tried this: //PRODUCT_CLICK
utag.link({
"enh_action" : "product_click", // enhanced e-commerce action
"event_category" : "ecommerce", //my event category
"event_action":"click",//my event action
"event_label":"result list", //list from which selected the product
"prod_id" : ['1a','2b'], // product id
"prod_name" : ['testA','testB'], // product name
"prod_brand" : ['nike', 'adidas'], // product brand
"prod_var" : ['a','b'], // product variant
"prod_cat" : ['shoes', 'socks'], // product category
"prod_price" : ['23.39', '11.00'], // product price
"prod_quan" : ['1', '2'], // product quantity
"prod_pos" : ['1','2'], // product position
"prod_color" : ['blue','grey'], // product color as a custom dimension
"prod_metric" : ['23.39','11.00'] // product-level metric
});
//add to cart
utag.link({
"enh_action" : 'add', // enhanced e-commerce action
"event_category":"ecommerce",
"event_action":"product_adds_to_cart",
"prod_id" : ['1a'], // product id
"prod_name" : ['testA'], // product name
"prod_brand" : ['nike'], // product brand
"prod_var" : ['a'], // product variant
"prod_cat" : ['shoes'], // product category
"prod_price" : ['23.39'], // product price
"prod_quan" : ['1'], // product quantity
"prod_pos" : ['1'], // product position
"prod_color" : ['blue'], // product color as a custom dimension
"prod_metric" : ['23.39'] // product-level metric
}); but it launched two different events one UX with the product and the another without product. EVENT 1 ec: UX ea: click el: results pa: click pr1id: 3375 - 1 pr1nm: name of product pr1br: brand of product pr1va: pr1ca: category of product pr1pr: 20.30 pr1qt: pr1cc: pr1ps: 5 EVENT 2 ec: ecommerce ea: product_list_click I would like have an unique event with the product and the custom category and action. Just like this: ec: ecommerce ea: product_list_click el: Search Results pa: click pr1id: 3375 - 1 pr1nm: name of product pr1br: brand of product pr1va: pr1ca: category of product pr1pr: 20.30 pr1qt: pr1cc: pr1ps: 5 Is it possible? Thanks. Sara.
... View more