
WordPress Woocommerce Checkout中怎么隐藏美国偏远州或特定国家?
美国物流小包不承运州及地区:
阿拉斯加Alaska
夏威夷Hawaii
美属萨摩亚American Samoa
关岛The Territory of Guam
北马里亚纳群岛Commonwealth of the Northern Mariana Islands
美属维京群岛United States Virgin Islands
波多黎各The Commonwealth of Puerto Rico
PO Box
AA
AE
AP
主题functions.php中添加下面
// 移除美国州’AK’, ‘HI’, ‘PR’, ‘AA’ , ‘AE’ , ‘AP’
add_filter( 'woocommerce_states', 'remove_unwanted_states' );
function remove_unwanted_states( $states ) {
$blocked = array( 'AK', 'HI', 'PR', 'AA' , 'AE' , 'AP' );
foreach ( $blocked as $code ) {
unset( $states['US'][$code] );
}
return $states;
}
// 移除指定的国家(使用国家简码)
add_filter( 'woocommerce_countries', 'remove_specific_countries_from_dropdown' );
function remove_specific_countries_from_dropdown( $countries ) {
unset( $countries['WS'] ); // Samoa
unset( $countries['AS'] ); // American Samoa
unset( $countries['VI'] ); // Virgin Islands (US)
unset( $countries['GU'] ); // Guam
unset( $countries['UM'] ); // US Minor Outlying Islands
return $countries;
}
后台中直接设置禁售国家
WooCommerce-Settings-Selling location(s)-Sell to all countries, except for…-选择禁售国家

请先 !