yan-k
1/27/2015 - 1:33 PM

Remove related products from single product pages in WooCommerce

Remove related products from single product pages in WooCommerce

<?php

/*
 * wc_remove_related_products
 * 
 * Clear the query arguments for related products so none show.
 * Add this code to your theme functions.php file.  
 */
function wc_remove_related_products( $args ) {
	return array();
}
add_filter('woocommerce_related_products_args','wc_remove_related_products', 10);

?>