Víctor mendez
Víctor mendez

Reputation: 41

Remove TAX amount text on cart and checkout Woocommerce

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?

enter image description here

enter image description here

Upvotes: 0

Views: 3822

Answers (2)

tushonline
tushonline

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

Lupu Pavel
Lupu Pavel

Reputation: 11

For your specific question, hiding the amount with css would be:

.woocommerce .includes_tax .amount {
    display: none;
}

Upvotes: 1

Related Questions