Home » WooCommerce: How to Remove Related Products

WooCommerce: How to Remove Related Products

by Tutor Aspire

Some store owners like to keep their product pages as clutter-free as possible. They want to remove all the unnecessary stuff and keep the focus of the page about the particular product.

On the WooCommerce single product page, you will find 3 (or more) related products. In this tutorial, we will show you how to remove these related products using a simple code.

PHP Snippet: Hide Related Products @ WooCommerce Single Product Page

remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );

You may also like