Sha256: 493dd949aa31aff99319f0dc2a089ff49c354dbc648f313520d814f21b27c086
Contents?: true
Size: 761 Bytes
Versions: 9
Compression:
Stored size: 761 Bytes
Contents
<script> if (typeof analytics !== 'undefined') { analytics.track('Order Completed', { order_id: '<%= order.number %>', total: '<%= order.total %>', shipping: '<%= order.shipment_total %>', tax: '<%= order.additional_tax_total %>', discount: '<%= order.promo_total %>', coupon: '<%= order.promo_code %>', currency: '<%= order.currency %>', products: [ <% order.line_items.each do |line_item| %> { product_id: '<%= line_item.product.id %>', sku: '<%= line_item.variant.sku %>', name: '<%= line_item.product.name %>', price: '<%= line_item.price %>', quantity: '<%= line_item.quantity %>' }, <% end %> ] }); } </script>
Version data entries
9 entries across 9 versions & 1 rubygems