用magento制作的外贸网站上的客户,一些批发网站的客户,希望在magento购物车页面显示物品的总重量,这样客户就知道自己的包裹到底有多重,运费是怎么计算出来的。如图:
app/design/frontend/yourtheme/yourpackage/template/checkout 找到 cart.phtml 在 <form action 前加上如下代码: Total weight of your cart is: <?php $weight = 0; foreach($this->getItems() as $_item): $weight +=($_item->getWeight() * $_item->getQty()); endforeach; echo $weight; ?> kgs 如图: (责任编辑:最模板) |