How To Add The Bundle Name To The Packing Slip
Due to our usage of the Cart Transformation feature, the bundle is broken down into individual line items after checkout. While this is useful for inventory tracking and packing purposes, some users who make heavy use of the packing slips for fulfillment may get confused due to the lack of a "Bundle Product" within their packing slips.
This article is mainly to assist those users and their staff to allow for more clarity on which products are part of a bundle and which are not when basing off a packing slip.
Instructions:
- Open Shopify > Settings > Shipping & Delivery > Packing Slip Templates.
- Apply the code snippet below to the template file.
- Find the line
{% for line_item in line_items_in_shipment %}
- Add the code below:
{% for group in line_item.groups %} <span class="line-item-description-line"> Part of: {{ group.title }} </span> {% endfor %}
- Save.
How to test the new packing slip?
- Refresh the order detail page
- Generate a new packing slip
- The slip format will be updated
p.s the line_item.groups property is an undocumented liquid property under line_item. It might be changed from time to time