请我需要帮助。
我想把产品重量放在价格旁边。我使用 Magento 1.7。
谢谢您的帮助。索林
我找到了答案:
编辑 view.phtml 文件 /app/design/frontend/default/delicu/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; ?>