remove product from url woocommerce code example
Example 1: remove link from product name in woocommerce cart
add_filter( 'woocommerce_cart_item_permalink', '__return_null' );
Example 2: woocommerce archive-product remove add
/**
* remove add to cart buttons on shop archive page
*/
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10);