Change total woocommerce order weight

前端 未结 2 2115
-上瘾入骨i
-上瘾入骨i 2021-01-14 09:58

I need change total weight of order in woocommerce website.

For example: I have a 3 product in a cart: 1 - 30g; 2 - 35; 3 - 35g; total = 30+35+35 = 100g, but I want

2条回答
  •  遥遥无期
    2021-01-14 10:15

    It's working at my end. Update total weight to new weight value.

    add_action('woocommerce_cart_collaterals', 'myprefix_cart_extra_info');
    function myprefix_cart_extra_info() {
        global $woocommerce;
        echo '
    '; echo '

    ' . __('Total Weight:', 'woocommerce'); echo ($woocommerce->cart->cart_contents_weight*0.3)+$woocommerce->cart->cart_contents_weight; echo '

    '; echo '
    '; }

提交回复
热议问题