View difference between Paste ID: VGjStSAz and t4aGyy0s
SHOW: | | - or go back to the newest paste.
1
window.dataLayer = window.dataLayer || [];
2
window.dataLayer.push({
3-
  event: 'add_to_cart',  			// name of the event. In this case, it always must be add_to_cart
3+
  event: 'remove_from_cart',  			// name of the event. In this case, it always must be remove_from_cart
4
  ecommerce: {							
5
    items: [{							// an array with a product (or multiple products) that was added to a cart
6
      item_name: 'Hotel Terme Jezerčica', 			// insert an actual accommodation name
7
      item_id: 'accommodation1',				// insert an actual accommodation ID
8
      price: '250.00',					// insert an actual accommodation price. Number or a string. Don't include currency code
9
      item_category: 'Hotels',			// insert an actual accommodation top-level category
10
	  accommodation_location: 'Donja Stubica',		// insert a accommodation location
11
      item_variant: 'Standard twin room, balcony',	// add accommodation variant, room type or similar
12
      quantity: '1'						// product quantity of how many products were added to a cart, usually always 1
13
    }]
14
  }
15
});