

A bundle on the product page using the Table layout — included products, the automatic "Save X (Y%)" badge and the total bundle price.
Codeholt Bundles for WooCommerce adds a lightweight, native “Bundle” product type to your store. Combine multiple products into one bundle with a fixed discounted price (or auto-calculated price), show customers exactly how much they save, and sell more per order — one cart line, correct stock handling, and native WooCommerce price fields so sorting and filtering keep working.
Search, add, remove and drag & drop reorder products right on the product edit screen’s Bundled Products tab. Each item gets its own quantity and an optional “hide on frontend” toggle, with a live totals preview while you build.
Validates and reduces bundled product stock on purchase, prevents overselling when a child product runs low or out of stock, restores stock on cancellation/refund, and keeps bundle availability live-synced to its children.
The whole bundle adds to cart as one line item, with its contents and total savings shown — fully working in both the classic cart/checkout and the WooCommerce Cart & Checkout blocks. The same details carry through to the order-received page, order emails, and the admin order screen.
Two built-in layouts, Table and Compact, selectable as a site-wide default or overridden per bundle from WooCommerce Bundles Settings.
Set the default product-page layout and bundle-listing card style, customize the “included products” section heading, and toggle the savings badge on or off — all from WooCommerce Bundles Settings.
A cached, HPOS-aware dashboard under WooCommerce Bundles showing total bundles sold, total revenue, total customer savings, the top-selling bundle, and a per-bundle sales table with revenue-share bars.
Export every bundle as a re-importable JSON file (matches bundled products by SKU) or as a CSV report, and import bundles back in through a simple drag-and-drop dropzone.
[cbfw_bundle id="123"]Actions and filters throughout (pricing, layouts, admin tabs, import/export, settings) and fully overridable templates. See the Other Notes tab for the full hook list.
Copy any file from the plugin’s templates/ directory into yourtheme/codeholt-bundles-for-woocommerce/, keeping the same sub-folder structure, and edit your copy:
templates/bundle-card.php — the card used by the shortcode, block and Elementor widget.templates/single-product/add-to-cart/bundle.php — the bundle area on the single product page.cbfw_bundled_products — ( array $resolved, CBFW_Product_Bundle $bundle ) Resolved bundled items before they are used.cbfw_can_bundle_product — ( bool $can, WC_Product $product ) Whether a product may be bundled.cbfw_pricing_modes — ( array $modes ) Registered pricing modes. Default array( 'auto', 'fixed' ).cbfw_custom_mode_prices — ( null|array $prices, CBFW_Product_Bundle $bundle, string $mode, array $totals ) Return array( 'regular' => …, 'sale' => … ) to supply prices for a custom mode.cbfw_product_layouts — ( array $layouts ) Registered single-product layouts.cbfw_bundle_layout — ( string $layout, CBFW_Product_Bundle $bundle ) Layout used for one bundle.cbfw_bundle_card_html — ( string $html, CBFW_Product_Bundle $bundle, array $args ) Rendered card markup.cbfw_show_savings_badge — ( bool $show, WC_Product $product ) Whether the savings badge is shown.cbfw_savings_badge_text — ( string $badge, WC_Product $product, array $pricing ) Badge text. Must be escaped.cbfw_inline_css — ( string $css, array $settings ) Extra CSS appended to the frontend stylesheet.cbfw_structured_data — ( array $markup, CBFW_Product_Bundle $bundle ) Bundle structured data.cbfw_save_bundled_items — ( array $items, WC_Product $product ) Sanitized items before they are saved.cbfw_save_settings — ( array $settings ) Settings before they are written to the database.cbfw_bundle_choices_limit — ( int $limit ) Max bundles listed in pickers. Default 200.cbfw_overview_days — ( int $days ) Reporting period for the analytics overview. Default 30.cbfw_child_search_help — ( string $text ) Help tip under the bundle builder’s product search.cbfw_loaded — Fires once the plugin is fully loaded.cbfw_bundle_synced — ( CBFW_Product_Bundle $bundle ) After a bundle’s price and stock are resynced.cbfw_order_line_item_created — ( WC_Order_Item_Product $item, CBFW_Product_Bundle $bundle ) After bundle meta is written to an order line item.cbfw_import_bundle — ( CBFW_Product_Bundle $bundle, array $bundle_data ) After a bundle is created from an import row, before prices are resynced.cbfw_before_bundled_items / cbfw_after_bundled_items — ( CBFW_Product_Bundle $bundle ) Around the included-products list on the product page.cbfw_pricing_fields — ( WP_Post $post ) Extra fields in the product data pricing area.cbfw_after_builder_panel — ( WP_Post $post ) After the Bundled Products panel.cbfw_settings_sections — ( array $settings ) Extra sections on the Settings tab.cbfw_layout_card_fields — ( array $settings ) Extra fields inside the layout settings card.cbfw_overview_actions — ( int $days ) Toolbar area of the analytics overview.cbfw_admin_tab_{$tab} — Renders the body of a custom admin tab.