在 WooCommerce 结帐页面上获取实时客户发货位置

我正在尝试在 WooCommerce 中的运费下为结帐页面上的订单添加预计交货时间。


我已经研究出如何做到这一点,例如:


add_action( 'woocommerce_after_shipping_rate', 'blm_action_after_shipping_rate', 20, 2 );


function blm_action_after_shipping_rate ( $method, $index ) {

    if( is_cart() ) {

        return; // Exit on cart page

    }


    // Use $method->method_id in here to check delivery option


}

现在,为了能够估计天数(不幸的是运输 API 不返回此数据)我需要在这里找出运输国家和运输州/省 - 有没有办法做到这一点?


繁花不似锦
浏览 126回答 1
1回答

慕斯709654

运费是根据客户发货地点计算的。因此,您询问了客户的运输国家/地区,并说明您可以WC_Customer使用以下专用方法从对象中获取:add_action( 'woocommerce_after_shipping_rate', 'blm_action_after_shipping_rate', 20, 2 );function blm_action_after_shipping_rate ( $method, $index ) {&nbsp; &nbsp; if( is_cart() ) {&nbsp; &nbsp; &nbsp; &nbsp; return; // Exit on cart page&nbsp; &nbsp; }&nbsp; &nbsp; $shipping_country = WC()->customer->get_shipping_country();&nbsp; &nbsp; $shipping_state&nbsp; &nbsp;= WC()->customer->get_shipping_state();&nbsp; &nbsp; // Testing output&nbsp; &nbsp; echo '<br><small>Country code:' . $shipping_country . ' | State code: ' . $shipping_state . '</small>';}代码位于活动子主题(或活动主题)的 function.php 文件中。测试和工作。如果客户更改国家和州,则刷新数据并在WC_CustomerObject中设置新的国家和州。
打开App,查看更多内容
随时随地看视频慕课网APP