Skip to main content
Login Join
Snippet · PHP

Disable WooCommerce Related Products

Shared by Amit Dholiya · September 10, 2026 · @woocommerce_after_single_product_summary

4 views
1 upvote
Back to Snippets

If you don’t want WooCommerce to display the Related Products section on product pages, you can remove it completely with a simple hook.

Steps

  1. Add the code below to your theme’s functions.php.
  2. Save the file.
  3. Refresh any single product page.
/**
 * Disable WooCommerce related products
 */
function custom_remove_related_products() {
    remove_action(
        'woocommerce_after_single_product_summary',
        'woocommerce_output_related_products',
        20
    );
}

add_action( 'wp', 'custom_remove_related_products' );
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments