产品重量属性自动添加四个零

时间:2016-08-18 07:26:14

标签: magento attributes

我是magento的新手。我尝试使用产品重量属性KG,我该怎么做..

enter image description here

2 个答案:

答案 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>

一切正常:)