我已創建鉤行動Woocommerce車計算費用
do_action('wpyoug_update_price');
add_action('wpyoug_update_price', 'wpyoug_update_woocommerce_price');
function wpyoug_update_woocommerce_price(){
global $totalshipCharge;
add_action('woocommerce_cart_calculate_fees', 'cp_add_custom_price');
}
當我回聲內wpyoug_update_woocommerce_price()函數將其返回。但add_action('woocommerce_cart_calculate_fees','cp_add_custom_price');不工作
function cp_add_custom_price(){
global $woocommerce;
$thiscarttotal = WC()->cart->get_cart_total();
$thiscarttotal = preg_replace('/$/', '', $thiscarttotal);
$woocommerce->cart->add_fee(__('Miscellaneous Handling Fee', 'woocommerce'), 10);
}
做你想做的任何特定頁面 –
是的,我想更新價格 – Sudhir
只需添加的功能頁面此條件cp_add_custom_price功能,因爲你的方式正確使用它。 –