Hi all -
I am using the Shopify Bundles app to create product bundles for our store. When a customer orders, it shows the bundle on the order status page along with the individual products. However, the packing slip just shows the individual products to pull, and doesn’t indicate that it’s a bundle anywhere on the packing slip. We assigned the bundle a SKU.
Anyone know the code to edit in the packing slip to show the bundle instead of the individual SKU components?
Thanks!
You can copy and paste your packing slip template code to chatgpt and ask for a customization.
We built a custom GPT - Packing Slip Customizer: ChatGPT - BYOB - Packing Slip Customizer
Not sure if it can help. Feel free to give it a shot
Hi, you can edit your packaging slip code to display the bundle name.
a simple code block you can use
{% for line_item in line_items_in_shipment %}
{% for group in line_item.groups %}
<span class="line-item-description-line">
Part of: {{ group.title }}
</span>
{% endfor %}
{% endfor %}