Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.dataLayer = window.dataLayer || [];
- window.dataLayer.push({
- event: 'select_item', // name of the event. In this case, it always must be select_item
- ecommerce: {
- items: [{ // an array with a product that was clicked
- item_name: 'Blue Cave', // insert an actual trip name
- item_id: 'trip1', // insert an actual trip ID
- price: '250.00', // insert an actual trip price. Number or a string. Don't include currency code
- item_category: 'Sea & Boat', // insert an actual trip top-level category
- trip_location: 'Krk', // insert an actual trip location
- item_list_name: 'homepage - trips section', // insert the name of the list where the trip is currently displayed
- item_list_id: 'homepage_trips_section', // insert the list id where the trip is currently displayed
- index: 1, // insert trip's position in that list
- quantity: '1' // product quantity. In this case, it will usually be equal to 1
- }]
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment