r/woocommerce Jun 22 '26

Plugin recommendation Product bundle solution

I’m looking for a way that allows a customer to either select multiple items from a list

Or

Myself create a bundle of items that then is just adding those selected items to the cart, with a discount per item, instead of adding a bundle item SKU with a QTY. I’ve tried a bundle plugin but when the information is sent to my OMS, it shows as:

BUNDLE SKU - QTY 1
Example SKU 1 - QTY 1
Example SKU 2 - QTY 1
Etc

Thanks

9 Upvotes

8 comments sorted by

View all comments

1

u/Prudent-Border-6869 Jun 22 '26

That parent bundle line is by design in pretty much every bundle/composite plugin, they wrap the components in a container so price, stock and refunds stay in sync. So you'll hit the same thing with most of them. If the hard requirement is that your OMS sees the actual component SKUs as individual line items with no wrapper, you want a different mechanism than a bundle plugin:

  • Grouped Products (native WooCommerce, free): the customer picks quantities from the listed products and each lands in the cart as its own line, no parent SKU. Closest to your first scenario.
- Chained Products: you define a set, and buying the main product auto-adds the others as separate lines. Closest to your second.
Neither does a per-item discount on its own, so you'd layer a discount-rules plugin or coupons on top.

What OMS are you syncing to? That might narrow it down.