Quantcast
Channel: Opinion: Shopify Community - Shopify Apps
Viewing all articles
Browse latest Browse all 11091

Forsberg+two commented on How to include SKU on picking slips from Shopifys Order Printer

$
0
0

HI Philip,

I know this is an old post now, but if you still need it here's the code you need to add:

{% for item in line_items %}
    {{ item.sku }}
{% endfor %}

So there is a loop which loops through each of your products in the order (which is most likely already in your document code). Inside the loop anywhere you can use the {{ item.sku }} code.

Hope this helps!


Viewing all articles
Browse latest Browse all 11091