希望在这里找到解决方案。
我想在
十大国家/地区 荷兰 德国 比利时 联合王国 USA
选择您所在的国家/地区 正常列表
我无法找到任何过滤器,只能添加一个或多个国家/地区。
答案 0 :(得分:0)
https://www.wpstud.io/add-custom-select-field-woocommerce-checkout-page/
答案 1 :(得分:0)
add_filter('woocommerce_sort_countries', '__return_false');
add_filter( 'woocommerce_countries', 'change_country_order_in_checkout_form' );
function change_country_order_in_checkout_form($countries)
{
$usa = $countries['US']; // Store the data for "US" key
$uk = $countries['GB']; // Store the data for "UK" key
// Return "US" and "UK" first in the countries array
return array('US' => $usa, 'GB' => $uk) + $countries;
}
但是,这也会将国家/地区从主要列表中删除。