Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created May 18, 2021 05:59
Show Gist options
  • Select an option

  • Save wbcomdev/8c376200320735105486cf59433cc8b3 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/8c376200320735105486cf59433cc8b3 to your computer and use it in GitHub Desktop.
/**
* Change number of upsells output.
*/
function wb_change_number_related_products( $args ) {
$args['posts_per_page'] = 1;
$args['columns'] = 4; // change number of upsells here.
return $args;
}
add_filter( 'woocommerce_upsell_display_args', 'wb_change_number_related_products', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment