在 Woocommerce 我的地址视图部分显示自定义字段值
showing custom field values in Wocommerce my-address view section
我在 woocommerce.but 我的帐户页面的我的地址编辑部分添加了自定义字段 我在显示 section.how 的地址中没有看到它,我可以在那里显示吗 also.There 只有公司,名字、姓氏、账单地址 1、账单地址 2、州城市和国家/地区 displaying.how 进行更改。
add_filter( 'woocommerce_my_account_my_address_formatted_address', function(
$args, $customer_id, $name ){
// the phone is saved as billing_phone and shipping_phone
$args['area'] = get_user_meta( $customer_id, $name . '_area', true );
return $args;
}, 10, 3 );
add_filter( 'woocommerce_localisation_address_formats', function( $formats )
{
foreach ( $formats as $key => &$format ) {
// put a break and then the phone after each format.
$format .= "\n{area}";
}
return $formats;
} );
我在 woocommerce.but 我的帐户页面的我的地址编辑部分添加了自定义字段 我在显示 section.how 的地址中没有看到它,我可以在那里显示吗 also.There 只有公司,名字、姓氏、账单地址 1、账单地址 2、州城市和国家/地区 displaying.how 进行更改。
add_filter( 'woocommerce_my_account_my_address_formatted_address', function(
$args, $customer_id, $name ){
// the phone is saved as billing_phone and shipping_phone
$args['area'] = get_user_meta( $customer_id, $name . '_area', true );
return $args;
}, 10, 3 );
add_filter( 'woocommerce_localisation_address_formats', function( $formats )
{
foreach ( $formats as $key => &$format ) {
// put a break and then the phone after each format.
$format .= "\n{area}";
}
return $formats;
} );