Hello,
I have a problem with the packing slip template. I would like multiple lines if a client orders a same product multiple times. Currently, it appears with only one line and the quantity at the end:
But, I need it to show it likes this but with the same product (for exemple):
But I don’t know how actually, so I need help..
Here’s what I have in the template section if it’s helpful:
---
Produit(s)
Quantité
{% comment %}
To adjust the size of line item images, change desired_image_size.
The other variables make sure your images print at high quality.
{% endcomment %}
{% assign desired_image_size = 78 %}
{% assign resolution_adjusted_size = desired_image_size | times: 300 | divided_by: 72 | ceil %}
{% capture effective_image_dimensions %}
{{ resolution_adjusted_size }}x{{ resolution_adjusted_size }}
{% endcapture %}
{% for line_item in line_items_in_shipment %}
{% if line_item.image != blank %}
{{ line_item.image | img_url: effective_image_dimensions | img_tag: '', 'aspect-ratio__content' }}
{% endif %}
{{ line_item.title }}
{% if line_item.variant_title != blank %}
{{ line_item.variant_title }}
{% endif %}
{% if line_item.sku != blank %}
{{ line_item.sku }}
{% endif %}
{{ line_item.shipping_quantity }}
Thank you to anyone who will help me with that ! ![]()

