Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GA Enhance Ecommerce Product List Performance

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.

product performance list

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?

like image 843
Timo002 Avatar asked Jun 09 '17 14:06

Timo002


1 Answers

The attribution in the enhanced eCommerce is a little trick, it makes list attribution and promotion attribution.

Relate to the list attribution, the purchase is recursively attributed to the last list viewed that contains the id of the product. So, even if you access the cart through one page, f you open another page that contains the product id before making the purchase, the attribution will change. With the promotion attribution is kind of different, the purchase is attributed to the last promotion clicked.

Make sure of the structure of the enhanced eCommerce object as well.

There's a full explanation here. This blog has a lot of information about it.

like image 162
TCrepalde Avatar answered Dec 28 '22 12:12

TCrepalde