woocommerce disable links on specific product

Solutions on MaxInterview for woocommerce disable links on specific product by the best coders in the world

showing results for - "woocommerce disable links on specific product"
Dylan
22 Jun 2020
1apply_filters( 'woocommerce_cart_item_name', sprintf( '%s', $_product->get_title() ), $cart_item, $cart_item_key );
2
Willie
15 May 2017
1apply_filters( 'woocommerce_cart_item_name', sprintf( '<a href="%s">%s</a>', $_product->get_permalink(), $_product->get_title() ), $cart_item, $cart_item_key );
2