1
我在嘗試在Magento中的購物車中顯示原始單價時遇到問題。默認情況下,Magento只顯示特價,但我也想顯示原價以突出顯示節省。如何在Magento中的購物車中顯示原始價格
我知道哪些模板需要更改哪些是/template/checkout/cart/item/default.phtml。
線145它顯示
<?php
echo $this->helper('checkout')->
formatPrice($_incl-$_item->getWeeeTaxDisposition())
?>
這顯示特殊價格。我只是不知道顯示原始價格的語法。
謝謝,我不太清楚你建議編輯哪個模板,但是你的回覆確實可以幫助我想出以下解決方案,它可以很好地工作: – user1363578 2012-04-29 19:32:51
<?php if($ _item-> getProduct() - > getSpecialPrice()): ?> \t <?php echo $ this-> helper('checkout') - > formatPrice($ _ item-> getProduct() - > getPrice()); ?> \t <?php endif; ?> – user1363578 2012-04-29 21:12:07