1 回答

TA貢獻1876條經(jīng)驗 獲得超5個贊
很難找出您的問題可能是什么……請注意“您的問題應(yīng)該更新為包括所需的行為、特定問題或錯誤,以及重現(xiàn)問題所需的最短代碼。”
您可以嘗試的可能是:
$customer = WC()->customer;
if( ! is_a( $customer, 'WC_Customer' ) {
global $current_user;
if( $current_user > 0 ) {
$customer = new WC_Customer( $current_user->ID );
}
}
if( is_a( $customer, 'WC_Customer' ) {
$billing_country = $customer->get_billing_country();
if( ! $customer->is_vat_exempt() ) {
$customer->set_is_vat_exempt( true );
}
} else {
// Some code to throw an error or debug trace
}
我希望這會解決你的問題。如果不是,您需要以某種方式將用戶 ID傳遞給您的代碼。
- 1 回答
- 0 關(guān)注
- 133 瀏覽
添加回答
舉報