Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

analytics.subscribe("checkout_completed", event => {
const products = event.data.checkout.lineItems.map((product) => ({
productId: product.id,
productName: encodeURIComponent(product.title),
quantity: product.quantity,
price: product.variant.price.amount
}))
prz("event", "transaction", ` {"products": ${JSON.stringify(products)}}`)
});

  1. You will have the complete code now ready to publish:

    image-20240429-042740.pngImage Removedimage-20240429-061722.pngImage Added
  1. Hit Save, then Connect and this is now live!

...