Advertisement
jaspacio

GA4 View Item List (formerly Product Impressions)

Mar 21st, 2023
936
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. dataLayer.push({ ecommerce: null });  // Clear the previous ecommerce object.
  2. dataLayer.push({
  3.   event: "view_item_list",              // This the required GA4 event and should always stay as is.
  4.   ecommerce: {
  5.     item_list_id: "related_products",    
  6.     item_list_name: "Related products",   // Can be replaced by a list name based on the page type e.g. Series listing, Product listing
  7.     items: [                              // An array that contains all the items loaded on the page (listing, product page, etc.)
  8.      {
  9.       item_id: "SKU_12345",
  10.       item_name: "Stan and Friends Tee",
  11.       affiliation: "Google Merchandise Store",
  12.       coupon: "SUMMER_FUN",
  13.       discount: 2.22,
  14.       index: 0,
  15.       item_brand: "Google",
  16.       item_category: "Apparel",
  17.       item_category2: "Adult",
  18.       item_category3: "Shirts",
  19.       item_category4: "Crew",
  20.       item_category5: "Short sleeve",
  21.       item_list_id: "related_products",
  22.       item_list_name: "Related Products",
  23.       item_variant: "green",
  24.       location_id: "ChIJIQBpAG2ahYAR_6128GcTUEo",
  25.       price: 9.99,
  26.       quantity: 1
  27.     },
  28.     {
  29.       item_id: "SKU_12346",
  30.       item_name: "Google Grey Women's Tee",
  31.       affiliation: "Google Merchandise Store",
  32.       coupon: "SUMMER_FUN",
  33.       discount: 3.33,
  34.       index: 1,
  35.       item_brand: "Google",
  36.       item_category: "Apparel",
  37.       item_category2: "Adult",
  38.       item_category3: "Shirts",
  39.       item_category4: "Crew",
  40.       item_category5: "Short sleeve",
  41.       item_list_id: "related_products",
  42.       item_list_name: "Related Products",
  43.       item_variant: "gray",
  44.       location_id: "ChIJIQBpAG2ahYAR_6128GcTUEo",
  45.       price: 20.99,
  46.       promotion_id: "P_12345",
  47.       promotion_name: "Summer Sale",
  48.       quantity: 1
  49.     }]
  50.   }
  51. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement