Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在产品页面上显示适用于产品的税名(与产品上配置的税类相同)。
这就是我要展示的内容:
价格:100 美元 + 样品税
谢谢!
这将返回 Tax-Class 的名称:
$taxClassId = $_product->getTaxClassId(); $taxClass = Mage::getModel('tax/class')->load($taxClassId); $taxClassName = $taxClass->getClassName();