Отключить страницу товара (404)

function woocommerce_disable_shop_page() {
	global $post;
	if (is_product()):
		global $wp_query;
		$wp_query->set_404();
		status_header(404);
	endif;
}
add_action( 'wp', 'woocommerce_disable_shop_page' );