Skip to content

Instantly share code, notes, and snippets.

@grayayer
Created April 20, 2017 01:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grayayer/d231fb685f93b92547058de9900d5c50 to your computer and use it in GitHub Desktop.
Save grayayer/d231fb685f93b92547058de9900d5c50 to your computer and use it in GitHub Desktop.
remove related products from the bottom of product pages in Woocommerce
/* remove related products from the bottom of product pages in Woocommerce */
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_upsell_display', 15 );
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
add_action( 'woocommerce_after_single_product_summary', 'related_upsell_products', 15 );
function related_upsell_products() {
global $product;
if ( isset( $product ) && is_product() ) {
$upsells = $product->get_upsells();
if ( sizeof( $upsells ) > 0 ) {
woocommerce_upsell_display();
} else {
woocommerce_upsell_display();
woocommerce_output_related_products();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment