To remove or hide the Related Products section in WooCommerce add the following blocks of code to either your functions.php file or update your WordPress theme’s CSS file to hide the Related Products block.
/** * Remove related products output */ remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
.related.products { display: none; }