将自定义前10名列表添加到woocommerce国家/地区下拉列表中

时间:2016-10-24 09:56:17

标签: wordpress woocommerce checkout dropdown country

希望在这里找到解决方案。

我想在自定义前10个国家/地区列表。所以看起来应该是这样的:

十大国家/地区 荷兰 德国 比利时 联合王国 USA

选择您所在的国家/地区 正常列表

我无法找到任何过滤器,只能添加一个或多个国家/地区。

2 个答案:

答案 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;
}

但是,这也会将国家/地区从主要列表中删除。