如何在Magento 1.9.X的Header Mini Cart中显示运费?

时间:2016-02-16 13:35:16

标签: php magento magento-1.9

我想在标题迷你购物车中显示与购物车页面相同的运费。 只显示Grand Total。

请建议我如何在标头迷你车中收取运费。

1 个答案:

答案 0 :(得分:1)

您可以在app / design / frontend / package_name / Theme_name / template / checkout / cart / minicart.phtml中添加此代码

<?php if(!$_cartQty)
     $_cartQty = 0;
     $_shipping = $this->helper('checkout')->formatPrice
     (Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingAmount());
?>

并将此价格打印为

 <?php echo $_shipping ?>

你想要哪里得到价格。