Qazi Shuja
Qazi Shuja

Reputation: 11

Opencart (Weight issue total weight show in grams how to convert in kg)

I've an issue in opencart when I click on shopping cart then net weight shows in gram like thisShopping Cart (1,550.00g)` .

But I want to display weight in kg.

how can I do that?

Upvotes: 1

Views: 4321

Answers (2)

Roy M J
Roy M J

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 Image :

Cheers

Upvotes: 2

AdamskiFTW
AdamskiFTW

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

Related Questions