如何在Magento 1.7的价格旁边添加产品重量

时间:2012-09-28 10:48:08

标签: magento-1.7

我需要帮助。

我想把产品重量放在价格旁边。我使用的是Magento 1.7。

感谢您的帮助。 索林

我找到了答案:

编辑view.phtml文件 /app/design/frontend/default/deliciu/template/catalog/product/view.phtml

添加鳕鱼:

<?php  $_weight = $this->htmlEscape($_product->getWeight()); if ($_weight < 1)
    $_weightstr = number_format($_weight*1000,2) . " gr"; else
    $_weightstr = number_format($_weight,2) . " kg"; echo $_weightstr; ?>

0 个答案:

没有答案