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.
我想在 magento 的产品页面中同时显示 MSRP(制造商建议零售价)价格和等级价格。
两个价格应同时显示在 magento 的产品页面上
您需要在要显示 MSRP 价格的主题/目录/产品/view.phtml 中添加以下代码。
<?php echo Mage::helper('core')->currency($_product->getMsrp(),true,false); ?>
等级价格将自动显示在 price.phtml 中