If you're using the Merged Bundle feature of Angle 3D Configurator, you’ll need to make a small edit to your Shopify theme so bundle details display properly on the cart page.
🛒 This does not affect checkout — Shopify displays bundles correctly there by default.
âś… Step 1: Create a New Snippet
Go to your Shopify Admin → Online Store > Themes > Edit Code
Under the Snippets folder, click “Add a new snippet”
(This step requires some basic coding skills, so we invite you to contact us if you are not able to do it)
Still in your theme code editor, locate the cart item loop. It usually lives in:
(The file name could be different in your theme)
sections/cart-items.liquid.
OR
sections/main-cart.liquid
Inside the loop, locate the area where Shopify shows the product’s line item properties.
The loop is usually similar to this code:
{%- for item in cart.items -%}
...
{%- for property in item.properties -%}
...
{%- endfor -%}
...
...
{%- endfor -%}
At the specified location above, add those 2 lines:
{% comment %} ANGLE 3D CONFIGURATOR - MERGED BUNDLE DETAILS {% endcomment %}
{% render 'angle-3d-cart-merged-bundle' with item as item %}
[ OPTIONAL] (The second line above assumes your line item variable is called "item". If it is called any other way, you'll need to adapt it accordingly.
Ex: If your line item variable is called "myOwnItem", the line to integrate will be:
{% render 'angle-3d-cart-merged-bundle' with as item %}
đź§Ş You're Done!
Your cart page will now show:
The bundle breakdown (main product & secondary products)
Customization details
“Edit customization” button
Variant image and quantity for each secondary product
See below, an example of a cart with a merged bundle item once the code is properly integrated:
💬 Need help? Contact our support team — we’ll be happy to assist.