答案 0 :(得分:2)
权重属性具有decimal
后端类型。它用于计算报价的总重量,用于某些运输方式的运费计算。
您必须调整主题,以所需格式输出重量。您可以简单地将属性值转换为float以消除尾随零。
echo (float) 1.0000; // Outputs: 1
echo (float) 1.0100; // Outputs: 1.01
答案 1 :(得分:0)
这就是我所做的。
in attributes.phtml
<li>
<?php
if ($_product->getWeight() > 0) {
$_theweight = $_product->getWeight();
$_weightstr = number_format($_theweight, 0);
echo '<span class="label">' . __('Weight') . ' : </span>';
echo '<span class="data adss" id="childrenWeight">' . $_weightstr . ' Kg</span>';
}
?>
</li>
一切正常:)