Is this export possible (all SKU names from each order) also with excel XML export?

It is possible to export all SKU names from each order in excel XML. You just need to add the following code to get the items in the order into the Content Template.
{% for item in order.items %}
{{ item.sku }}
{% endfor %}

Updated on: 03/20/2020

Was this article helpful?

Share your feedback

Cancel

Thank you!