julia_peculiar Posted January 23, 2005 Posted January 23, 2005 I seem to be reading this forum to death since installing OsCommerce a couple of days ago, during which time I came across a question somewhere from somebody asking what units of weight OsCommerce uses for shipping. 'Whatever you want', was the response. This seemed logical enough to me (provided that you use the same unit throughout!). Alas, my logic usually has holes in it the size of which you can drive a tank through, and this case was no exception. Tonight, I finished writing my shipping tables and then found that at the checkout next to the order weight was written '(lbs)'. How can I show (kgs) instead? I have tried to hunt down the origin of (lbs) so that I can change it, but with no success. I hope someone can help me locate it, because (lbs) tracking sniffer dogs aren't cheap to come by :) Thanks.
boxtel Posted January 23, 2005 Posted January 23, 2005 I seem to be reading this forum to death since installing OsCommerce a couple of days ago, during which time I came across a question somewhere from somebody asking what units of weight OsCommerce uses for shipping. 'Whatever you want', was the response. This seemed logical enough to me (provided that you use the same unit throughout!). Alas, my logic usually has holes in it the size of which you can drive a tank through, and this case was no exception. Tonight, I finished writing my shipping tables and then found that at the checkout next to the order weight was written '(lbs)'. How can I show (kgs) instead? I have tried to hunt down the origin of (lbs) so that I can change it, but with no success. I hope someone can help me locate it, because (lbs) tracking sniffer dogs aren't cheap to come by :) Thanks. <{POST_SNAPBACK}> that is simple text defined in the language file for that module. so go to includes/languages/english/modules/shipping/ and open the relevant language file and change lbs to Kg. something like this : define('MODULE_SHIPPING_ZONES_TEXT_UNITS', 'lb(s)'); to define('MODULE_SHIPPING_ZONES_TEXT_UNITS', 'Kg'); Treasurer MFC
julia_peculiar Posted January 23, 2005 Author Posted January 23, 2005 That worked beautifully (like I'm telling you something you *don't* know :). OsCommerce offers a reasonably steep learning curve when you've never dabbled with much more than a site comprising your own simple HTML. Thanks for the leg-up - you're a star :)
boxtel Posted January 23, 2005 Posted January 23, 2005 That worked beautifully (like I'm telling you something you *don't* know :). OsCommerce offers a reasonably steep learning curve when you've never dabbled with much more than a site comprising your own simple HTML. Thanks for the leg-up - you're a star :) <{POST_SNAPBACK}> just remember, anything displayed which could be language dependant is sure to be found in the language files. Look at what the page filename is that you are looking at and 80% of the time the relevant language file has the same name. Treasurer MFC
Recommended Posts
Archived
This topic is now archived and is closed to further replies.