Bundle Products Not Displaying in Cart Using Shopify's Bundle App

Hello Shopify Community,

I’ve encountered an issue with Shopify’s official Bundle App where bundle products are not appearing in the cart as expected. Here’s a detailed overview of the problem:

Issue Description:

  • Cart Total Reflects Bundle: After adding a bundle product to the cart, the total amount updates correctly, indicating that the bundle has been added.
  • Bundle Items Not Listed: Despite the correct total, the individual items within the bundle do not display in the cart’s itemized list.

Steps Taken:

  1. GraphQL Query Adjustments: Modified the cart query to include lineComponents as suggested in GitHub Issue #1836.
  2. Metafields Exploration: Attempted to retrieve bundle information through cart metafields, but encountered errors indicating missing required arguments.

Observations:

  • Similar Reports: Other developers have reported related issues, such as bundle products not appearing in Shopify Functions inputs (Shopify Developer Community).
  • Potential Core Issue: The consistency of these reports suggests a possible underlying issue with how Shopify’s Bundle App integrates with the cart system.

Request for Assistance:

  • Official Guidance: Is there an official solution or recommended workaround to ensure bundle products are properly displayed in the cart?
  • Further Documentation: Could Shopify provide more detailed documentation or updates regarding this issue?

Any insights or assistance from the community or Shopify team would be greatly appreciated.

Thank you in advance for your support.

Best regards,

lamasgergo

It won’t show individual items if your theme doesn’t support it. You should use the item_components from the line_item object to retrieve the components of a bundle.

1 Like

Thank you for your response. I apologize for any confusion caused by my initial post. To clarify, I am developing an application that interacts with the Shopify Storefront API via GraphQL to retrieve and display cart contents. This application functions as a app proxy, aiming to accurately represent the cart’s contents, including any bundle products added through Shopify’s official Bundle App.

Issue Encountered:

  • Cart Total Reflects Bundle: After adding a bundle product to the cart, the total amount updates correctly, indicating that the bundle has been added.
  • Bundle Items Not Listed: Despite the correct total, the individual items within the bundle do not appear in the cart’s itemized list when queried through the Storefront API.

I have not found any working example graphql query for showing cart with bundle products.
thanks

Hi there! Is there any progress? I am really sweating with the same issue. I am adding regular products to my cart via Storefront API just fine. But when trying to add a bundled product to the cart, I am getting back an empty object in the lineItems array while the cartTotal is updated just fine.

1 Like