Advertisement
chiragsolanki

digby-fine-english.com - begin_checkout

Jan 16th, 2024
701
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_begin_checkout",   // name of the event. In this case, it always must be GA4_begin_checkout
  4.   ecommerce: {
  5.     currency: "GBP",
  6.     value: 100.00,               // total value - all items
  7.     items: [
  8.     {
  9.       item_id: "product1",                       // insert an actual product id
  10.       item_name: "2013 Blanc de Blancs Brut",         // insert an product name
  11.       item_brand: "Item brand",                     // insert an actual product brand
  12.       item_category: "Standard Bottles Wine",                 // insert an actual product top-level category
  13.       price: 65.00,                               // insert an actual product price
  14.       quantity: 1                               // product quantity
  15.     },
  16.     {
  17.       item_id: "product2",                       // insert an actual product id
  18.       item_name: "Non Vintage Brut",         // insert an product name
  19.       item_brand: "Item brand",                     // insert an actual product brand
  20.       item_category: "Standard Bottles Wine",                 // insert an actual product top-level category
  21.       price: 35.00,                               // insert an actual product price
  22.       quantity: 1                               // product quantity
  23.     }]
  24.   }
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement