我正在尝试在 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 不返回此数据)我需要在这里找出运输国家和运输州/省 - 有没有办法做到这一点?
慕斯709654