我想知道如何在购物车,结帐和客户电子邮件中添加一条消息,如果启用了税项,则会显示两条消息之一。
例如,如果英国或欧盟的某些人购买了某种产品,则会在“包含增值税20%”的总额中说明。如果欧盟以外的人购买东西,则会在“英国销售税被扣除”的总额中说明。
我已经设置了税,这取决于您选择的国家/地区,但我想知道如何显示这些消息。
非常感谢提前。
答案 0 :(得分:0)
编辑app / design / frontend / base / default / template / checkout / cart.phtml
调整并添加此代码:
$quote = Mage::getSingleton('checkout/session')->getQuote();
$billingAddress = $quote->getBillingAddress();
$country = $billingAddress->getCountryId();
if($country == "XX") {
echo "<p>Display this message if user is from XX.</p>";
}