Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save bobwol/c6f0dbee9608ee8e67fb39f0d27bc00f to your computer and use it in GitHub Desktop.

Select an option

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