Woocommerce在管理仪表板上编辑订单

时间:2018-10-25 02:51:18

标签: woocommerce

使用Woocommerce,在管理员订单编辑页面中,是否可以在第二行移动邮政编码?

类似于此屏幕截图:

enter image description here

1 个答案:

答案 0 :(得分:0)

以下代码将允许您更改Woocommerce管理员单个订单(编辑)页面上的格式的帐单和送货地址的显示适用于所有国家/地区

add_filter( 'woocommerce_localisation_address_formats', 'admin_localisation_address_formats', 50, 1 );
function admin_localisation_address_formats( $address_formats ){
    if( is_admin() ){
        $address_formats = array();

        $countries = array('default', 'AU', 'AT', 'BE', 'CA', 'CH', 'CL', 'CN', 'CZ',
        'DE', 'EE', 'FI', 'DK', 'FR', 'HK', 'HU', 'IN', 'IS', 'IT', 'JP', 'TW', 'LI',
        'NL', 'NZ', 'NO', 'PL', 'PT', 'SK', 'SI', 'ES', 'SE', 'TR', 'US', 'VN' );

        foreach( $countries as $country_code ) {
            $address_formats[$country_code] = "{company}\n{name}\n{address_1} {address_2} {postcode}\n{city} {state}\n{country}";
        }
    }
    return $address_formats;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

enter image description here