Advertisement
chiragsolanki

foodpros.com - view_item

Jan 9th, 2024
815
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.dataLayer = window.dataLayer || [];
  2. window.dataLayer.push({
  3.   event: "GA4_view_item",                   // name of the event. In this case, it always must be GA4_view_item
  4.   ecommerce: {
  5.     currency: "USD",
  6.     value: 449.00,                            // total value (product value * quantity)
  7.     items: [
  8.     {
  9.       item_id: "product1",                       // insert an actual product id
  10.       item_name: "Wisco 561 16 Pizza Oven",    // insert an product name
  11.       item_brand: "Wisco Industries",            // insert an actual product brand
  12.       item_category: "Pizza Ovens & Warmers",   // insert an actual product top-level category
  13.       price: 449.00,                            // insert an actual product price
  14.       quantity: 1                              // product quantity
  15.     }
  16.     ]
  17.   }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement