How To Move The Bundled Products

By default the bundled products will show after the main image and product summary. You may want to move the bundled products up into the summary area, and fortunately, this is easy to do!

Just add the following snippet to your theme’s functions.php file:

/**
 * Move the bundled products.
 */
function iconic_move_bundled_products() {
    global $iconic_woo_bundled_products, $product;

    if ( ! $product ) {
        return;
    }

    if ( $product->get_type() !== 'bundled' ) {
        return;
    }

    remove_action( 'woocommerce_after_single_product_summary', array( $iconic_woo_bundled_products, 'output_bundled_products' ), 5 );
    add_action( 'woocommerce_single_product_summary', array( $iconic_woo_bundled_products, 'output_bundled_products' ), 25 );
}

add_action( 'woocommerce_before_single_product', 'iconic_move_bundled_products', 10 );

This will add the bundled products just after the product description.

WooCommerce Bundled Products

Bundle a selection of products on a single product page. It even works with variable products!

Was this helpful?

Please let us know if this article was useful. It is the best way to ensure our documentation is as helpful as possible.