SandroBabic

GA4 EC - select_item - Hotel Lišanj

Apr 17th, 2023
853
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: 'select_item',             // name of the event. In this case, it always must be select_item
  4.   ecommerce: {                          
  5.     items: [{                           // an array with an accommodation unit that was clicked
  6.       item_name: 'Standard double room',           // insert an actual accommodation unit name
  7.       item_id: 'room123',              // insert an actual product ID
  8.       price: '312.00',                   // insert an actual product price. Number or a string. Don't include currency code
  9.       item_category: 'Family Hotel',         // insert an actual accomodation top-level category (Family Hotel or Annex)
  10.       item_category2: 'Non Refundable Rate',        // rate category which applies to the selected accommodation unit
  11.       item_list_name: 'Search results', // insert the name of the list where the accommodation unit is currently displayed
  12.       item_list_id: 'search_results',   // insert the list id where the product is currently displayed
  13.       index: 1,                         // insert accommodation unit's position in that list
  14.       quantity: '1'                     // product quantity. In this case, it will usually be equal to 1
  15.     }]
  16.   }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment