Jump to content

Need help on how to change the default product weight


Mrfish8

Recommended Posts

  • 11 months later...
On 9/26/2020 at 11:36 PM, bsmither said:

Welcome MrFish! Glad to see you made it to the forums.

In admin, Store Settings, Stock tab, please choose "Imperial (lb)" for Weight Unit.

 

I want to change or add gram scale instead of KG, how can I do that Please?

Link to comment
Share on other sites

In the admin script file /sources/settings.index.inc.php:

Near line 450, 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'], 'Kg' => $lang['settings']['weight_unit_kg'], 'g' => "Metric (g)"),

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...