Calculate Weight After Add extra weight
-
I used the function to add the weight of the order but in the shipping method still only received the initial weight
add_filter(‘woocommerce_cart_contents_weight’, ‘add_package_weight_to_cart_contents_weight’);
function add_package_weight_to_cart_contents_weight( $weight ) {
$weight = $weight * 1.3; // add 30%
return $weight;
}Please help me!!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Calculate Weight After Add extra weight’ is closed to new replies.