Magento为数量添加了太多零
问题描述:
答
to solve this you need to find from which file this is comming
for that use Template Path Hint extension in Magento
then after then the code like :
number_format('QTY-VARIABLE',2);
so it will add 2 zero only and if you not want to add then in second param put 0
let me know you want to know more
答
You can edit $v->getCustomoptionsQty() to number_format($v->getCustomoptionsQty() , 0)