Hi @fhaps Thank you for your reply.
What I want is to have the same amount paid for the customers in the countries of UE, as explained in the section Prices including tax – Experimental Behavior (https://github.com/woocommerce/woocommerce/wiki/How-Taxes-Work-in-WooCommerce#prices-including-tax—experimental-behavior).
I added the string:
add_filter( ‘woocommerce_adjust_non_base_location_prices’, ‘__return_false’ );
It works for the prices of the products, but it doesn’t work for the shipping. The shipping price follows the same rules of the products as a matter of tax in UE. Is there any way to resolve that?
I also tried to use the code for showing the 0 value taxes:
add_filter( ‘woocommerce_order_hide_zero_taxes’, ‘__return_false’ );
But it doesn’t work for me.
Thank you