tribulant

checkout_order_weight filter

Nov 12th, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. function order_weight($weight = null, $co_id = null, $items = null) {
  2.  
  3.     //do something with the weight here
  4.     //for example:...
  5.  
  6.     $weight = 0;
  7.     foreach ($items as $item) {
  8.         $weight += $item -> product -> weight;
  9.     }
  10.  
  11.     return $weight;
  12. }
  13.  
  14. add_filter('checkout_order_weight', 'order_weight', 10, 3);
Add Comment
Please, Sign In to add comment