Customize WooCommerce Upsells Output
WooCommerce Snippet
If you want to modify the output of upsell products on your WooCommerce product pages, this snippet may help:
________________________________________________
add_filter( 'woocommerce_upsell_display_args', 'hungryflamingo_modify_upsells_output', 20 );
function hungryflamingo_modify_upsells_output( $args ) { $args['posts_per_page'] = 4; // number of products to show $args['columns'] = 4; // number of columns to show the upsells return $args; }
________________________________________________








