我需要帮助。
我想把产品重量放在价格旁边。我使用的是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; ?>