App reviews, troubleshooting, and recommendations
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
Hi everyone,
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:
Thanks a lot!
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
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?