2016-04-24 71 views

回答

0

以下片段將100添加到購物車中的所有產品,您可以將自己的條件和定價計算放在那裏。

function calculate_product_price($cart_object) { 
     /* Gift wrap price */ 
     $additionalPrice = 100; 
     foreach ($cart_object->cart_contents as $key => $value) {    
      //You can add your condition here 
      $quantity = floatval($value['quantity']); 
      $orgPrice = floatval($value['data']->price); 
      $value['data']->price = (($orgPrice + $additionalPrice) * $quantity);     
     } 
} 
add_action('woocommerce_before_calculate_totals', 'calculate_product_price', 1, 1); 
相關問題