Â
Note that if you have Add bundle items as separate line items to orders? app setting disabled, then this help article is not applicable to you.
Â
Â
By default, the dummy bundle product and its bundle items are individually displayed on the customer’s Shipping Confirmation Email (this is sent when you Fulfill items on Shopify orders).
Â
Merchants may choose to hide the bundle items from this email template for operational purposes.
Â
Â
From your Shopify admin, go to Settings > Notifications.
Under Customers notifications, find the Shipping section.
Click on Shipping confirmation to edit the email template.
Â
Search for the below snippet in your email template:
<table class="row"> {% for line in fulfillment.fulfillment_line_items %} <tr class="order-list__item"> <td class="order-list__item__cell">
Â
And replace with:
<table class="row"> {% for line in fulfillment.fulfillment_line_items %} <!-- BUNDLE KIT --> {% assign line_item_is_a_bundle_item = false %} {% if line.line_item.discount_allocations %} {% for discount_allocation in line.line_item.discount_allocations %} {% if discount_allocation.discount_application.title contains 'Bundle Kit:' %} {% assign line_item_is_a_bundle_item = true %} {% endif %} {% endfor %} {% endif %} {% if line_item_is_a_bundle_item == true %} {% continue %} {% endif %} <!-- BUNDLE KIT --> <tr class="order-list__item"> <td class="order-list__item__cell">
Â
Then click Save.
Â
Once saved, bundle items shall be hidden from customer's Shipping Confirmation Email.
Â