Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- window.dataLayer = window.dataLayer || [];
- window.dataLayer.push({
- 'event': 'eec.productClick', // name of an event. In this case, always stays as eec.productClick
- 'ecommerce': { // ecommerce object. This is the essential part of tracking. New EE data must always be pushed to this object
- 'click': { // name of an action. In this case, always stays as click
- 'actionField': {
- 'list': 'Search Results' //name of a list in which the property was clicked
- },
- 'products': [{
- 'name': 'Villa Sana', // name of a property that was clicked. Always include it.
- 'id': 'ET-0028', // id of a property. Always include it.
- 'category': 'Villa with pool', // category of a property
- 'position': '2' // number of a position (in which a property was visible at that time)
- }]
- }
- }
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment