Page 1 of 1

Make cart weight round up to whole kg

Posted: Mon Jul 14, 2014 6:43 pm
by ransom1
Hello,
I'm running OC 1.5.6.4 from a clean install. What I need to do is make my cart round up the total cart weight to a whole kg. So if my customers cart total is 4.3kg I need the shipping calculated on 5kg. How can I do this?
Thank you.

Re: Make cart weight round up to whole kg

Posted: Mon Jul 14, 2014 7:13 pm
by JAY6390
Open

Code: Select all

/system/library/cart.php
Find this line

Code: Select all

return $weight; 
change it to

Code: Select all

return ceil($weight); 
and save