Hello @Snoopy
If you look inside the administration Configuration, you a weight menu where can add different weight conversation.
Now how to make that on the catalog !
Below the element can help you. This code allow you to convert all in Kg.
$CLICSHOPPING_Weight = Registry::get('Weight');
$CLICSHOPPING_ProductsCommon = Registry::get('ProductsCommon');
$defaultUnitWeight = SHIPPING_WEIGHT_UNIT; // 2 in the default configuration KG
shipping_weight = getProductsWeight
// Take only the kg
// gr to kg
if ( $defaultUnitWeight == 1) {
$weight = round($CLICSHOPPING_Weight->convert($shipping_weight, $defaultUnitWeight, 2), 3);
}
//Ounce to kg
if ( $defaultUnitWeight == 3) {
$weight = round($CLICSHOPPING_Weight->convert($shipping_weight, $defaultUnitWeight, 2), 3);
}
//Ounce to kg
if ( $defaultUnitWeight == 4) {
$weight = round($CLICSHOPPING_Weight->convert($shipping_weight, $defaultUnitWeight, 2), 3);
}
echo $weight;