How to edit the checkout or cart page properties in Kite app?
The products added on bundle flow will include properties to identify product to bundle and order when viewed in Cart or Checkout.
Go to Kite Settings > Custom CSS and JS Setting > Custom CSS (you can paste the code in there)
.upcart-item-properties {
display: none !important;
}
OR
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: 01/12/2024
Thank you!