I'm trying to send the product_action_list with a product_click event. But the product_action_list variable never reaches Google Analytics. The rest of the variables work just fine. utag_data.enh_product_list is also set to the right value after the click event. utag.link({
"enh_action": "product_click",
"enh_product_list": "Test list",
"enh_product_id": ["1234AB"],
"enh_product_name": ["Test"],
"enh_product_category": ["Test/Testing"],
"enh_product_brand": ["Test Brand"],
"enh_product_variant": ["Test Product variant"],
"enh_product_price": [123],
"enh_product_position": [1]
}); Mappings: enh_action(js) --> enh_action enh_product_id(js) --> product_id enh_product_name(js) --> product_name enh_product_variant(js) --> product_variant enh_product_brand(js) --> product_brand enh_product_category(js)--> product_category enh_product_price(js) --> product_unit_price enh_product_quantity(js)--> product_quantity enh_product_list(js) --> product_action_list What am I missing?
... View more