使用Woocommerce,我想使用woocommerce_localisation_address_formats
钩子在管理命令编辑页面中查看用户元数据。
基于“ Woocommerce Edit order on admin dashboard” 答案代码,我对它作了如下轻微更改:
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}\n{billing_nombrecontacto}";
}
}
return $address_formats;
}
{billing_nombrecontacto}
应该是要插入到管理订单页面中的自定义数据…但是它没有任何作用。
要添加billing_nombrecontacto
,我使用了以下代码:
add_filter('woocommerce_billing_fields', 'custom_woocommerce_billing_fields');
function custom_woocommerce_billing_fields($fields,$fields2)
{
$fields['billing_nombrecontacto'] = array(
'label' => __('Nombre de contacto', 'woocommerce'), // Add custom field label
'placeholder' => _x('Nombre de contacto', 'placeholder', 'woocommerce'), // Add custom field placeholder
'required' => false, // if field is required or not
'clear' => false, // add clear or not
'type' => 'text', // add field type
'class' => array('my-css') // add class name
);
$fields['billing_cuit'] = array(
'label' => __('CUIT', 'woocommerce'), // Add custom field label
'placeholder' => _x('CUIT', 'placeholder', 'woocommerce'), // Add custom field placeholder
'required' => false, // if field is required or not
'clear' => false, // add clear or not
'type' => 'text', // add field type
'class' => array('my-css') // add class name
);
$fields['billing_emaildelvendedor'] = array(
'label' => __('Email del Contacto', 'woocommerce'), // Add custom field label
'placeholder' => _x('email del Vendedor', 'placeholder', 'woocommerce'), // Add custom field placeholder
'required' => false, // if field is required or not
'clear' => false, // add clear or not
'type' => 'text', // add field type
'class' => array('my-css') // add class name
);
$fields['billing_nombrecontacto']['priority'] = 102;
return $fields;
}
数据已正确收集,我可以在此自定义字段的帐户中看到它。
如何使其起作用?我被困住了。
答案 0 :(得分:2)
更新:添加了另外一个缺少的功能,用于显示billing_nombrecontacto
字段值…
我已重新访问了您现有的代码,并添加了更多代码以使其正常工作:
// Add / Display additional billing fields in checkout and My account > Edit adresses > Billing form
add_filter( 'woocommerce_billing_fields', 'additional_billing_fields', 10, 1 );
function additional_billing_fields( $fields )
{
$fields['billing_nombrecontacto'] = array(
'type' => 'text', // add field type
'label' => __('Nombre de contacto', 'woocommerce'), // Add custom field label
'placeholder' => _x('Nombre de contacto', 'placeholder', 'woocommerce'), // Add custom field placeholder
'class' => array('my-css'), // add class name
'required' => false, // if field is required or not
'clear' => false, // add clear or not
'priority' => 102, // define the priority
);
$fields['billing_cuit'] = array(
'type' => 'text', // add field type
'label' => __('CUIT', 'woocommerce'), // Add custom field label
'placeholder' => _x('CUIT', 'placeholder', 'woocommerce'), // Add custom field placeholder
'class' => array('my-css'), // add class name
'required' => false, // if field is required or not
'clear' => false, // add clear or not
);
$fields['billing_emaildelvendedor'] = array(
'type' => 'text', // add field type
'label' => __('Email del Contacto', 'woocommerce'), // Add custom field label
'placeholder' => _x('email del Vendedor', 'placeholder', 'woocommerce'), // Add custom field placeholder
'class' => array('my-css'), // add class name
'required' => false, // if field is required or not
'clear' => false, // add clear or not
);
return $fields;
}
// Adding custom placeholder to woocommerce formatted billing address only on Backend
add_filter( 'woocommerce_localisation_address_formats', 'admin_localisation_address_formats', 50, 1 );
function admin_localisation_address_formats( $address_formats ){
// Only in backend (Admin)
if( is_admin() ) {
foreach( $address_formats as $country_code => $address_format ) {
$address_formats[$country_code] .= "\n{nombrecontacto}";
}
}
return $address_formats;
}
// Custom placeholder replacement to woocommerce formatted billing address
add_filter( 'woocommerce_formatted_address_replacements', 'custom_formatted_address_replacements', 10, 2 );
function custom_formatted_address_replacements( $replacements, $args ) {
$replacements['{nombrecontacto}'] = ! empty($args['nombrecontacto']) ? $args['nombrecontacto'] : '';
return $replacements;
}
// Get the field values to be displayed in admin Order edit pages
add_filter('woocommerce_order_formatted_billing_address', 'add_woocommerce_order_fields', 10, 2);
function add_woocommerce_order_fields($address, $order ) {
$address['nombrecontacto'] = $order->get_meta('_billing_nombrecontacto');
return $address;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
奖金-使字段可编辑:
// Make the custom billing field Editable in Admin order pages
add_filter('woocommerce_admin_billing_fields', 'add_woocommerce_admin_billing_fields');
function add_woocommerce_admin_billing_fields($billing_fields) {
$billing_fields['nombrecontacto'] = array( 'label' => __('Nombre contacto', 'woocommerce') );
return $billing_fields;
}