助けてください。
価格の横に製品の重量を置きたい. Magento1.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; ?>