Add weight to new orders
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('pr_shipping_dhl_order_weight', 'custom_add_weight', 10, 2); | |
function custom_add_weight($total_weight, $order_id) { | |
$total_weight += 1; // Add any weight needed, units of measure will be whatever is set in WooCommerce | |
return $total_weight; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment