在选择美国以外的其他国家/地区时,如何自动选择国际运费?我写了以下函数,但它不起作用;我也试图在woocommerce支持论坛上得到答案,但我不能成功。谢谢Stackoverflow社区:)
add_filter( 'woocommerce_available_shipping_methods', 'cj_woocommerce_available_shipping_methods' );
function cj_woocommerce_available_shipping_methods( $available_methods ) {
if ( isset( $available_methods['international_shipping'] ) ) {
foreach ( $available_methods as $key => $value ) {
if ( 'international_shipping' != $key ) {
unset( $available_methods[ $key ] );
}
}
}
return $available_methods;
}