始终支付相同的价格,无论征税国家/地区如何

始终支付相同的价格,无论征税国家/地区如何

问题描述:

我们有一个内置 Woocommerce 的网店,我们接受加密支付(比特币、ETH 等).

We've a webshop built in Woocommerce and we accept crypto payments (Bitcoin, ETH etc).

由于我们位于欧盟,因此需要计算我们的价格税.

Since we're based in the EU we need to calculate tax on our prices.

因此,欧盟境内的每个客户都需要纳税.

So every customer that's inside the EU needs to pay tax.

我们已显示含税价格(例如 0.1 BTC).客户支付 0.1 BTC,并且在该价格内已经计算了 0.02 税.

We've displayed the prices including tax (0.1 BTC for example). The customer pays 0.1 BTC and there is already a 0.02 TAX calculated within that price.

但如果我们从非欧盟国家获得客户怎么办?我们希望他们也支付 0.1 BTC,但没有税率.

But what if we get a customer from without the EU? We want them to pay 0.1 BTC as well but then without the TAX rate.

这在 woocommerce 中可能吗?

Is this possible within woocommerce?

提前致谢!

曼德

一直在寻找解决此问题的方法.实际上是在 5 分钟前找到的.

Been searching high and low for a solution to this problem. Actually found it just 5 min ago.

将此添加到您的functions.php

Add this to your functions.php

add_filter( 'woocommerce_adjust_non_base_location_prices', '__return_false' );

阅读更多内容,https://github.com/woocommerce/woocommerce/wiki/How-Taxes-Work-in-WooCommerce#prices-including-tax---experimental-behavior