gpt4 book ai didi

wordpress - WP WooCommerce 从结帐下拉列表中获取国家/地区

转载 作者:行者123 更新时间:2023-12-04 12:45:53 44 4
gpt4 key购买 nike

我正在尝试通过他们自己的 API 获取第三方运费。他们需要国家、重量和服务。我发送了带有硬编码值的 HTTP 请求。但是,当我尝试获取实际值时,我似乎在国家/地区方面遇到了困难。

enter image description here

当用户更改国家/地区时,需要重新发送价格,目前我正在寻找默认值,在这种情况下是英国。

但是,我无法使用以下 Hook 获取该值:

woocommerce_shipping_fields

woocommerce_checkout_get_value

这是当前代码,这里是动态获取权重的:

add_action( 'woocommerce_cart_calculate_fees', 'shipping_weight_fee', 30, 1 );
function shipping_weight_fee( $cart ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;

$url = 'http://********/shipping/read.php';
$args = array(
'body' => array(
'weight' => $cart->get_cart_contents_weight(),
'location' => 'United Kingdom',
'service' => 1
)
);
$data = wp_remote_post( $url, $args );
$p = json_decode($data['body']);
//print_r($p);

$fee = $p->Data->rate;
// Setting the calculated fee based on weight
$cart->add_fee( __( 'Shipping Rate' ), $fee, false );
}

首先需要做的是获取预加载(默认)的当前国家/地区。然后,如果用户更改了此设置,则它会使用新国家/地区再次查询 API,并应用新价格。

我在上面尝试过的所有钩子(Hook)都无法为我提供任何实际值,请问正确的过滤器是什么?

谢谢阿迪

最佳答案

你应该先尝试使用:

WC()->customer->get_shipping_country()

…因为它将根据客户的变化进行更新,并且由 woocommerce 的自动检测位置功能填充。

您也可以尝试使用其中之一:

$shipping_counrtry = WC()->session->get('customer')['shipping_country'];

$package = WC()->shipping->get_packages()[0];
$custome_shipping_country = $package['destination']['country'];

您还可以使用如下组合:

$customer_shipping_country = WC()->customer->get_shipping_country();

if( empty($custome_shipping_country) ){
$package = WC()->shipping->get_packages()[0];
if( ! isset($package['destination']['country']) ) return $passed;
$customer_shipping_country = $package['destination']['country'];
}

所以在你的代码中:

add_action( 'woocommerce_cart_calculate_fees', 'shipping_weight_fee', 30, 1 );
function shipping_weight_fee( $cart ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;

$custome_shipping_country = WC()->customer->get_shipping_country();

if( empty($custome_shipping_country) ){
$package = WC()->shipping->get_packages()[0];
if( ! isset($package['destination']['country']) ) return $passed;
$customer_shipping_country = $package['destination']['country'];
}

$url = 'http://********/shipping/read.php';
$args = array(
'body' => array(
'weight' => $cart->get_cart_contents_weight(),
'location' => $custome_shipping_country,
'service' => 1
)
);
$data = wp_remote_post( $url, $args );
$p = json_decode($data['body']);
//print_r($p);

$fee = $p->Data->rate;
// Setting the calculated fee based on weight
$cart->add_fee( __( 'Shipping Rate' ), $fee, false );
}

此代码位于您的事件子主题(或主题)的 function.php 文件中

它应该有效。

我使用 Shipping 而不是 billing,因为如果客户不提供发货数据,发货国家/地区将填充账单数据。

关于wordpress - WP WooCommerce 从结帐下拉列表中获取国家/地区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48814839/

44 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com