Change VAT country on cart page
-
Hi,
My client has a webshop and they ship their products to The Netherlands and Belgium. The problem at first was that Belgium was the default country on both the cart page and the checkout page. I changed the default country on the checkout page with this code:
add_filter( 'default_checkout_billing_country', 'change_default_checkout_country' ); function change_default_checkout_country() { return 'NL'; }
However this code doesn’t change the country on the checkout page. Check out this screenshot: Screenshot.
I’ve tried to hide the text with CSS, like this:
.includes_tax { display: none; }
but this also affects the VAT text on the checkout page which my client doesn’t want.
Is there a way to change the VAT text to The Netherlands instead of Belgium OR to hide the VAT text on the cart page, but not on the checkout page?
Thanks in advance!
Best regards,
Michelle
- The topic ‘Change VAT country on cart page’ is closed to new replies.