Reputation: 79
By default the woocommerce mini-cart shows the text "Subtotal" regardless if free shipping is available or not and prices already include taxes. How to programmaticaly change the text to "Total" if free shipping is set for the cart?
Upvotes: 0
Views: 177
Reputation: 1
Go to Appearance > Customize - click - additional css/styles. add this code
@media (max-width:767px){
.woocommerce-cart table.cart tr.cart_item .product-subtotal:before{content:"My Price: "}
}
Upvotes: 0