我试图以编程方式从表单提交时执行的脚本向woocommerce购物车添加费用。据我所知,我认为我无法使用挂钩,因为在提交页面上的表单(自定义API集成)后,我需要应用自定义费用。
我尝试在脚本中执行以下操作:
add_action( 'woocommerce_cart_calculate_fees', 'woo_add_cart_fee' );
function woo_add_cart_fee( $cart ){
$valid = false;
if ( ! $_POST || ( is_admin() && ! is_ajax() ) ) {
return;
}
if (isset($_POST['coupon_code'])) {
$code = $_POST['coupon_code'];
$coupon = new WC_Coupon($code);
if($coupon->get_amount() != null){
$valid == true;
}
//if not then lets check to see if its a giftcard.
if($valid == false){
$api_login="xxxxxx";
$api_password="xxxxxx";
$url = "https://xxxxxx.com/xxxxx/xxxxx.svc";
$client = new SoapClient( $url . "?singleWsdl",
array(
"location" => $url,
"login" => $api_login,
"password" => $api_password,
"trace" => 1
)
);
$request = new StdClass();
$request->bonId = $code;
$request->bonType = 'GiftCard';
// call the correct database
$request->context = new StdClass();
$request->context->DatabaseId = 'xxxxx';
try {
$resu = $client->GetBonAvailableAmount($request);
if (isset($resu->GetBonAvailableAmountResult->Amount)) {
$amount = $resu->GetBonAvailableAmountResult->Amount;
$cart->add_fee('xxxxxx Gift Card ', floatval('-'.$amount * 0.83333), false, '' );
} else {
$response['status'] = 'error';
$response['message'] = 'Gift card not recognized.';
}
} catch (Exception $e) {
}
}
}
}
我可以看到,当我echo
购物车对象时,有一个fee
对象包含所有正确的数据。
似乎购物车或总数没有更新,如果我刷新页面,它们仍然无法反映我期望的值。
我几乎所有的Stack Overflow帖子都被拖了,似乎找不到解决该问题的方法。
这里有什么我想念的吗?
答案 0 :(得分:1)
您需要使用挂在woocommerce_cart_calculate_fees
动作挂钩中的自定义函数:
add_action( 'woocommerce_cart_calculate_fees', 'add_a_custom_fee', 10, 1 );
function add_a_custom_fee( $cart ) {
$amount = 20;
$cart->add_fee( __('Custom fee'), $amount );
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。