Articles on: Easy Bundles - Advanced Customization

How to edit the checkout page properties for the bundle ?

The products added on bundle flow will include properties to identify product to bundle and order when viewed in Cart or Checkout.


The “_bundlename”, or “_BundleID” properties seeing here are referred to as “hidden” line item properties, since they start with an underscore. They are hidden during the Shopify checkout, and themes usually have the code built in to ensure that these are not displayed, but sometimes this needs to be added in manually.


To fix this, all we need to do is add a condition to the line item property loop in your cart.liquid template in your theme file.

Find
{% for p in item.properties %}


Past the code below directly beneath the line:
{% if p.first.first == "_" %}{% continue %}{% endif %}


Follow this video for the process :





If you are facing any troubles or have further customization requests
Book a meeting with our team here!

Updated on: 07/04/2024

Was this article helpful?

Share your feedback

Cancel

Thank you!