在产品页面上超过 1000 克时以 KG 显示产品重量

Display product weight in KG when it's over 1000 grams on Product Page

这里有一个类似的问题:

但是用户提供的代码在每个产品描述和缩略图上添加了一个新段落,其中包含重量,并在“附加信息”选项卡上留下以克为单位的重量。

有没有办法改变它通常出现的重量,产品页面附加信息选项卡?

这是解决方案,希望有人觉得这个有用:

function woocommerce_format_weight( $weight_string, $weight ) { 

     if ( $weight >= 1000 ) {
            $weight_string = wc_format_localized_decimal($weight / 1000);
            $weight_string .= ' Kg';
        }
    return $weight_string; 
}; 

add_filter( 'woocommerce_format_weight', 'soltronic_woocommerce_format_weight', 10, 2 );