問題描述
我想在 woocommerce 結帳頁面上為訂單總數添加 300,但 woocommerce_calculate_totals 鉤子不起作用...
I want to add 300 to order total on woocommerce checkout page but woocommerce_calculate_totals hook doesn't do the job...
如果我使用 var_dump($total),我會看到正確的結果 - int(number),但訂單表中的總金額沒有變化.
If I use var_dump($total), I see the correct result - int(number), but the total amount in order table is not changing.
add_action( 'woocommerce_calculate_totals', 'action_cart_calculate_totals', 10, 1 );
function action_cart_calculate_totals( $cart_object) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
if ( !WC()->cart->is_empty() ):
$total = $cart_object->cart_contents_total += 300;
var_dump($total);
endif;
}
推薦答案
從 Woocommerce 3.2 開始,鉤子
woocommerce_calculate_totals
不適用于此.
請參閱此線程的說明:在 WooCommerce 中更改購物車總價
您必須使用以下方法之一:
You will have to use one of the following ways using:
1) 過濾器鉤子 woocommerce_calculated_total
這樣:
1) The filter hook woocommerce_calculated_total
this way:
add_filter( 'woocommerce_calculated_total', 'change_calculated_total', 10, 2 );
function change_calculated_total( $total, $cart ) {
return $total + 300;
}
2) 費用 API 如下:
2) The Fee API like:
add_action( 'woocommerce_cart_calculate_fees', 'add_custom_fee', 10, 1 );
function add_custom_fee ( $cart ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
$fee = 300;
$cart->add_fee( __( 'Fee', 'woocommerce' ) , $fee, false );
}
代碼位于活動子主題(或活動主題)的 function.php 文件或任何插件文件中.
Code goes in function.php file of your active child theme (or active theme) or also in any plugin file.
這篇關于在 Woocommerce 3.2+ 中使用 Hooks 更改購物車總數的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!