I'm using Enhanced Ecommerce and I want to know how good my product lists perform. Below a screenshot of the product list performance section.
You can see that I've set up three lists:
- productgroep default (Standard product listing)
- productgroep filtered (Product listing with filters used)
- detail view (this is actually a product detail page, so no listing.)
There is also a:
- (not set) product list name, this one comes by default.
Now when I click on a product in a list, it counts in the column Product List Clicks, all fine. One can also add a product directly to the cart when the list is shown, so these are also measured and shown in the column Product Adds To Card.
Now when the product is purchased, it counts the Product Checkouts, Unique Purchases and Product Revenue in the product List (not set).
When the product is added to the cart directly from a list, I also do:
ga("ec:setAction", "click", {
"list": "productgroep default"
});
Why doesn't GA add these purchases to the correct product list?
ec:addImpression
without setting thelist
value. – Timo002