merhaba
Woocommerce kullandığınızı varsayarak
Aslında ağırlık birimi ağırlık birimine dönüşür ama bir hesaplama mantığınız olduğunu düşünerek ; Aşağıdaki kodu denemenizi rica ederim .
// Convert the product weight
function ag_woocommerce_product_get_weight( $weight ) {
// Only convert if we have a weight
if ($weight) {
// The weight is in KGS, and we will convert it to m . You haven given below values and I didnt edit them .
$weight = $weight * 1/0,5/0,918/0,017;
}
return $weight;
};
// add the filter
add_filter( 'woocommerce_product_get_weight', 'ag_woocommerce_product_get_weight', 10, 1 );