Hi,
I’m using the [[!commerce.get_orders]] snippet to show all orders of a user.
I have a column “Invoice” but it is empty.
On the twig template I have this :
{% for invoice in order.invoices %}
<a href="[[~[[++commerce.order_resource]]? &order=`{{ order.id }}` &downloadInvoice=`{{ invoice.id }}`]]">{{ invoice.reference }}</a><br />
{% endfor %}
But it’s look like the invoices where not activated, or not available… what did I miss ?