Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created February 12, 2012 23:19
Show Gist options
  • Save jameskoster/1811704 to your computer and use it in GitHub Desktop.
Save jameskoster/1811704 to your computer and use it in GitHub Desktop.
WooCommerce - Change number of upsells displayed and # of products per row
remove_action( 'woocommerce_after_single_product', 'woocommerce_upsell_display');
add_action( 'woocommerce_after_single_product', 'woocommerce_output_upsells', 20);
if (!function_exists('woocommerce_output_upsells')) {
function woocommerce_output_upsells() {
woocommerce_upsell_display(3,3); // Display 3 products in rows of 3
}
}
@ejntaylor
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment