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
- Add the code below to your theme’s
functions.php. - Save the file.
- 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' );