Advertisement
borkolivic

Add weight to order

Feb 22nd, 2021 (edited)
842
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_filter( 'woocommerce_cart_contents_weight', 'add_weight_2_wc_cart', 10000 );
  2.  
  3. function add_weight_2_wc_cart( $weight ) {
  4.  
  5.       $weight = $weight + 125; // add 15 kg or g, depending on settings
  6.     return $weight;    
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement