Jump to content

change product weight to grams instead of kg


jabeckett

Recommended Posts

In the administration folder /sources/settings.index.inc.php:

Near line 390, find:

'product_weight_unit' => array('Lb' => $lang['settings']['weight_unit_lb'], 'Kg' => $lang['settings']['weight_unit_kg']),

Change to:

'product_weight_unit' => array(
  'Lb' => $lang['settings']['weight_unit_lb'],
  'Oz' => "Imperial (oz)",
  'Kg' => $lang['settings']['weight_unit_kg'],
  'g' => "Metric (g)",
  ),

You will need to mention how you do shipping, as most (all) non-USA shippers want to use "kg" as the weight unit.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...