Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
opencart当我点击购物车 (1,550.00g)`shopping cart时出现问题。net weight shows in gram like this
opencart
shopping cart
net weight shows in gram like this
但我想显示重量kg。
kg
我怎样才能做到这一点?
你可以使用:
<?php $weight = number_format($weight / 1000, 2); ?>
将 $weight 更改为实际的变量名称。您可以将末尾的“2”更改为您想要显示的小数位数。
每个产品都有一个名为Weight Class的选项。这也存在于商店设置中。
可能在商店设置中,为重量等级选择的值将是克。将其更改为千克,一切都会按照您想要的方式进行。
见:
干杯