Reputation: 11
I've an issue in opencart
when I click on shopping cart
then net weight shows in gram like this
Shopping Cart (1,550.00g)` .
But I want to display weight in kg
.
how can I do that?
Upvotes: 1
Views: 4321
Reputation: 6938
There is an option along with each product called Weight Class. This is there also in shop settings.
Probably in shop settings the value selected for Weight Class will be grams. Change that to Kilograms and everything will work the way you want.
See :
Cheers
Upvotes: 2
Reputation: 109
You could use:
<?php
$weight = number_format($weight / 1000, 2);
?>
Change $weight to the actual variable name. You can change the '2' at the end to however many decimal places you want to display also.
Upvotes: 4