Home » WooCommerce: Move & Customize Upsells @ Single Product

WooCommerce: Move & Customize Upsells @ Single Product

by Tutor Aspire

Keeping WooCommerce upsells at the very bottom of the single product page it’s kinda boring. In my view, WooCommerce users want to know there are upsells even before they scroll down (you also might want that: upsell means more profit). Amazon does that too.

In this tutorial, we will see not only how to move them to the top, right below the Add to Cart, but also how to customize the upsells output to show just 2 columns and remove default WooCommerce “loop” elements such as the Add to Cart. Enjoy!

Move WooCommerce product upsells under the “Add to Cart” button and customize them

PHP Snippet 1: Move (a.k.a. remove, then re-add) Product Upsells Under Add to Cart @ Single Product Page

/**
 * @snippet       Move upsells - WooCommerce Single Product
 * @how-to        Get tutoraspire.com FREE
 * @author        Tutor Aspire
 * @compatible    WooCommerce 3.5.7
 * @donate $9     https://www.tutoraspire.com
 */

remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );

add_action( 'woocommerce_single_product_summary', 'woocommerce_upsell_display', 39 );

PHP Snippet 2: Change Product Upsells Output to 2 Columns @ Single Product Page

/**
 * @snippet       Edit upsells columns - WooCommerce Single Product
 * @how-to        Get tutoraspire.com FREE
 * @author        Tutor Aspire
 * @compatible    WooCommerce 3.5.7
 * @donate $9     https://www.tutoraspire.com
 */

add_filter( 'woocommerce_upsell_display_args', 'tutoraspire_change_number_related_products', 9999 );

function tutoraspire_change_number_related_products( $args ) {
$args['posts_per_page'] = 2;
$args['columns'] = 2; 
return $args;
}

PHP Snippet 3: Remove Default Elements From Product Upsells Output e.g. Add to Cart @ Single Product Page

/**
 * @snippet       Remove upsells Add to Cart - WooCommerce Single Product
 * @how-to        Get tutoraspire.com FREE
 * @author        Tutor Aspire
 * @compatible    WooCommerce 3.5.7
 * @donate $9     https://www.tutoraspire.com
 */

add_action( 'woocommerce_before_shop_loop_item', 'tutoraspire_customize_single_upsells' );

function tutoraspire_customize_single_upsells() {
global $woocommerce_loop;
if ( $woocommerce_loop['name'] == 'up-sells' ) {
// remove add to cart button
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
}
}

You may also like