Hi all, The standard way to setup product impressions is to add all the variables in utag_data. By doing this, you'll send all impressions at once to Google Analytics, so also the products that are not visible on the page. To solve this, I'm trying to send product impressions with an utag.link once the products are visible. This works, but the enh_impression_list is not filled correctly. I hope someone can help me out?! This is what I did: utag.link({ event_name : 'product_impression', enh_action : 'product_impression', imp_list_name : ['list-category','list-category','list-category'], imp_id : ['123','456','789'], imp_name : ['Top 1','Top 2','Top 3l'], imp_price : ['24.99','12.99','1.99'], imp_position : ['1','2','3'], }); I've mapped all these variables in the Google Universal Analytics tag: I've made sure that an event is send to GA by mapping event Category, Action and Label when enh_action is product_impression. When I test this in our test environment, all the variable are send correctly to GA, except for imp_list_name. Did I miss a step somewhere? Any tips are welcome :) Thanks!
... View more