Skip to content

Instantly share code, notes, and snippets.

@paulakg4
Forked from jameskoster/functions.php
Created May 16, 2013 23:51
Show Gist options
  • Save paulakg4/5596025 to your computer and use it in GitHub Desktop.
Save paulakg4/5596025 to your computer and use it in GitHub Desktop.
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_upsells', 15 );
if ( ! function_exists( 'woocommerce_output_upsells' ) ) {
function woocommerce_output_upsells() {
woocommerce_upsell_display( 3,3 ); // Display 3 products in rows of 3
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment