在我的网站结账税价格不包括在内,但它在购物车中正确显示了

购物车:

checkout

有帮助吗?

解决方案

我在我的问题中得到了答案

在购物车页面上,请毫不含税,然后转到

/app/design/frontend/package/theme/template/tax/checkout
.

找到这个

Mage::helper('core')->currency($this->getTotal()->getValue(), false, false);
.

并改为

Mage::getSingleton('checkout/cart')->getQuote()->getSubtotal();
.

无需设置排除税

许可以下: CC-BY-SA归因
scroll top