Feature what would be useful (and actually needed by the EU law). This will also help to make pricing more attractive for the buyers when they are same (inside EU) and not changing depending on the VAT level.
– Same product prices (e.g. 39,90 EUR) to each EU country even VAT rate is different
– Tax free prices to outside EU
– Remove EU VAT for B2B sales inside Europe (this is currently possible with a separate plugin and it’s OK)
This code is OK when the same prices is applied to every country (for example digital products):
add_action( ‘init’, ‘disable_vat_on_cloud’ );
function disable_vat_on_cloud() {
if ( defined( ‘CLOUD_SHOP’ ) && true === CLOUD_SHOP ) {
add_filter( ‘woocommerce_adjust_non_base_location_prices’, ‘__return_false’ );
}
}
But when selling to outside EU it’s should be possible to have tax free prices as when buyers are receiving the products they need to pay custom duties and local taxes. Therefore prices should be tax free for these customers.
Open
Last updated: February 8, 2025
0 comments
Log in to comment on this feature request.