{% if commerce_config.favicon_url %} {% endif %}
Back to {{ commerce_config.host_site_title }}
{% if commerce_config.logo_url %} {{ commerce_config.host_site_title }} logo {% endif %} {{ commerce_config.host_site_title }} Admin

Orders

View commerce orders for {{ commerce_config.host_site_title }}.

View, review, and manage commerce orders for {{ commerce_config.store_title }}.

Download CSV

{% if status or product_slug %}

Filter: {% if status %}status={{ status }}{% endif %} {% if product_slug %} product={{ product_slug }}{% endif %}

{% endif %}
{% if orders %}
{% for order in orders %} {% endfor %}
Order ID Buyer Product Price Amount Status Payment reference Actions
{{ order.public_id }} {{ order.buyer.full_name }}
{{ order.buyer.email }}
{% set cart_items = order.metadata.cart_items if order.metadata and order.metadata.cart_items else [] %} {% if cart_items %} Cart order
    {% for item in cart_items %}
  • {{ item.product_name }} x {{ item.quantity }}
  • {% endfor %}
{% else %} {{ order.product_slug }} {% endif %}
{% set cart_items = order.metadata.cart_items if order.metadata and order.metadata.cart_items else [] %} {% if cart_items %}
    {% for item in cart_items %}
  • {{ item.price_label }} - {{ item.currency }} {{ "%.2f"|format(item.amount_cents / 100) }}
  • {% endfor %}
{% else %} {{ order.price_code }} {% endif %}
{{ order.amount.currency }} {{ "%.2f"|format(order.amount.amount_cents / 100) }} {{ order.status.value }} {{ order.payment_reference or "" }} Edit order
{% else %}

No orders found.

{% endif %}