View difference between Paste ID: Xyq3zYnF and HdiUdPe4
SHOW: | | - or go back to the newest paste.
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 a product that was clicked
6-
      item_name: 'Blue Cave', 			// insert an actual trip name
6+
      item_name: 'Hotel Terme Jezerčica', 			// insert an actual accommodation name
7-
      item_id: 'trip1',				// insert an actual trip ID
7+
      item_id: 'accommodation1',				// insert an actual accommodation ID
8-
      price: '250.00',					// insert an actual trip price. Number or a string. Don't include currency code
8+
      price: '250.00',					// insert an actual accommodation price. Number or a string. Don't include currency code
9-
      item_category: 'Sea & Boat',			// insert an actual trip top-level category
9+
      item_category: 'Hotels',			// insert an actual accommodation top-level category
10-
	  trip_location: 'Krk',		// insert an actual trip location
10+
	  accommodation_location: 'Donja Stubica',		// insert an actual accommodation location
11-
      item_list_name: 'homepage - trips section', // insert the name of the list where the trip is currently displayed
11+
      item_list_name: 'homepage - hotels section', // insert the name of the list where the accommodation is currently displayed
12-
      item_list_id: 'homepage_trips_section',	// insert the list id where the trip is currently displayed
12+
      item_list_id: 'homepage_hotels_section',	// insert the list id where the accommodation is currently displayed
13-
      index: 1,							// insert trip's position in that list
13+
      index: 1,							// insert accommodations's position in that list
14
      quantity: '1'						// product quantity. In this case, it will usually be equal to 1
15
    }]
16
  }
17
});