Advertisement
prabapro

EEC - https://webdev.mrshao.com.pe/

May 1st, 2021 (edited)
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Product Click
  2. <script>
  3. window.dataLayer = window.dataLayer || [];
  4. window.dataLayer.push({
  5.     event: 'productClick',
  6.     ecommerce: {
  7.         click: {
  8.             actionField: {
  9.                 list: 'Ordenar'
  10.             },
  11.             products: [
  12.                 {
  13.                     id: '9da3ddb0-bb47-11ea-955b-ab937b241a4c',
  14.                     name: 'Wantán Frito x 2',
  15.                     price: 7,
  16.                     category: 'Entradas-y-piqueos',
  17.                     position: ''
  18.                 }
  19.             ]
  20.         }
  21.     }
  22. });
  23. </script>
  24.  
  25. //Add to cart
  26. <script>
  27. window.dataLayer = window.dataLayer || [];
  28. window.dataLayer.push({
  29.     event: 'addToCart',
  30.     ecommerce: {
  31.         currencyCode: 'PEN',
  32.         add: {
  33.             products: [
  34.                 {
  35.                     id: '9da3ddb0-bb47-11ea-955b-ab937b241a4c',
  36.                     name: 'Wantán Frito x 2',
  37.                     price: 7,
  38.                     category: 'Entradas-y-piqueos',
  39.                     position: '',
  40.                     quantity: 1
  41.                 }
  42.             ]
  43.         }
  44.     }
  45. });
  46. </script>
  47.  
  48. //Add to cart - add-ons
  49. <script>
  50. window.dataLayer = window.dataLayer || [];
  51. window.dataLayer.push({
  52.     event: 'addToCartAdit',
  53.     ecommerce: {
  54.         currencyCode: 'PEN',
  55.         add: {
  56.             products: [
  57.                 {
  58.                     id: 'f2dd7f20-c6cb-11ea-b8cb-e38aad115e26',
  59.                     name: 'Corbatitas chinas x Caja',
  60.                     price: 5.9,
  61.                     category: '',
  62.                     quantity: 1
  63.                 }
  64.             ]
  65.         }
  66.     }
  67. });
  68. </script>
  69.  
  70. //Checkout
  71. <script>
  72. window.dataLayer = window.dataLayer || [];
  73. window.dataLayer.push({
  74.     event: 'checkout',
  75.     ecommerce: {
  76.         checkout: {
  77.             actionField: { 
  78.                 step: 1 //Integer
  79.             },
  80.             products: [
  81.                 {
  82.                     id: '301ce550-ab6d-11eb-9225-e3a8ceaacc4d',
  83.                     name: 'Corbatitas chinas x Caja',
  84.                     price: 5.9,
  85.                     category: '',
  86.                     quantity: 1
  87.                 }
  88.             ]
  89.         }
  90.     }
  91. });
  92. </script>
  93.  
  94. //Checkout option
  95. <script>
  96. window.dataLayer = window.dataLayer || [];
  97. window.dataLayer.push({
  98.     event: 'checkoutOption',
  99.     ecommerce: {
  100.         checkout_option: {
  101.             actionField: {
  102.                 option: 'Visa (Counter delivery)'
  103.             }
  104.         }
  105.     }
  106. });
  107. </script>
  108.  
  109. //Purchase
  110. <script>
  111. window.dataLayer = window.dataLayer || [];
  112. window.dataLayer.push({
  113.     event: 'purchase',
  114.     ecommerce: {
  115.         purchase: {
  116.             actionField: {
  117.                 id: 'db529960-ab6d-11eb-b9f9-adae77b10960',
  118.                 revenue: 50.8
  119.             },
  120.             products: [
  121.                 {
  122.                     id: 'db58c6d0-ab6d-11eb-87c6-abd4a30e98da',
  123.                     name: 'Corbatitas chinas x Caja',
  124.                     price: 5.9,
  125.                     quantity: 1,
  126.                     category: '',
  127.                     position: ''
  128.                 }
  129.             ]
  130.         }
  131.     }
  132. });
  133. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement