Reputation: 41
I want to dispay total cart price without break down the amount of taxes separately. I have made a simulation image with chrome debug , how it should be.
This is how it should display: 9,72 € (Iva incluido)
After try several codes, I can't find the solution. It seem to do nothing when I introduce them in the functions.php, maybe they go in another template?
Upvotes: 0
Views: 3822
Reputation: 290
ideally it should be as follows, which does not hide the actual amounts on the order summary box.
.includes_tax .woocommerce-Price-amount {display:none}
Upvotes: 0
Reputation: 11
For your specific question, hiding the amount with css would be:
.woocommerce .includes_tax .amount {
display: none;
}
Upvotes: 1