Payment confirmed
Payment is not confirmed by this page.
Your payment has been confirmed successfully.
Thank you. Your order is paid and confirmed.
{% else %}
Checkout received
Payment is not confirmed by this page.
Checkout redirect received. Payment is confirmed only by verified webhook.
Payment is not confirmed yet. Confirmation happens after the verified payment webhook is processed.
{% endif %}
{% if order %}
Order
Order ID: {{ order.public_id }}
Status: {{ order.status }}
{% set cart_items = order.metadata.cart_items if order.metadata and order.metadata.cart_items else [] %} {% if cart_items %}Items purchased
| Product | Price option | Quantity | Unit price | Line total |
|---|---|---|---|---|
| {{ item.product_name }} | {{ item.price_label }} | {{ item.quantity }} | {{ item.currency }} {{ "%.2f"|format(item.amount_cents / 100) }} | {{ item.currency }} {{ "%.2f"|format((item.amount_cents * item.quantity) / 100) }} |
Product: {{ order.product_slug }}
Price option: {{ order.price_code }}
{% endif %}Amount: {{ order.currency }} {{ "%.2f"|format(order.amount_cents / 100) }}
{% else %}No order ID was supplied in the redirect URL.
{% endif %}