A customer would like to offer a free trial of her subscription services. For some reason WooCommerce details the full price of the subscription next to the Free Sample item within the cart. We'd like the price next to this specific item not be shown in the cart.
I thought it'd be easiest to just edit the CSS to not display the price. So far the code I have below will remove all prices from cart and checkout. I'd like only to remove the price from a specific product. How can I edit this to target the one product?
.shop_table thead, .shop_table .amount {display:none; }