We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Re: Looking for App to Create Tabbed Product Bundles with "Add All to Cart" Feature

Looking for App to Create Tabbed Product Bundles with "Add All to Cart" Feature

exoneon
Tourist
43 0 3

Hi everyone,

 

exoneon_0-1749443212754.png

 

 

I’m looking for a Shopify app (or a combination of apps) that allows me to create a clean, tabbed layout for upselling or bundling multiple products together. Specifically, I want to:

 

Display individual products in tabs (e.g., Basic, Pro, Bundle)

Show a visual and short description under each tab

Offer a discount for buying the full set

Have a single "Add Bundle to Cart" button that includes all items

 

Would love suggestions for:

  • Specific apps you’ve used
  • Whether this can be done with theme customizations
  • Any tips or gotchas to watch out for

 

Thanks a lot!

Replies 2 (2)

Small_Task_Help
Shopify Partner
1144 55 112

Hi,

Hope this will work

- Either use app or you can try theme Customization

Regarding theme customization

- Create Tabs using HTML/CSS
- Show products inside each tab using dynamic product handles or metafields.
- Add button that triggers an AJAX call to add all products:

Code example

fetch('/cart/add.js', {
  method: 'POST',
  body: JSON.stringify({
    items: [
      { id: VARIANT_ID_1, quantity: 1 },
      { id: VARIANT_ID_2, quantity: 1 }
    ]
  }),
  headers: { 'Content-Type': 'application/json' }
});


- Add automatic discounts using Shopify Scripts

To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Developers India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad
exoneon
Tourist
43 0 3

hi,

thanks for the help. Can you refer any app if we can achieve similar with? I can try using chatgpt what you have explained but would not achieve the results. If there is no app, can you help regarding this?