我正在使用woocommerce
(免费插件).. 我正在尝试向计费字段添加一个自定义字段..
这里是:
// ADDED HOW YOU GOT TO KNOW ABOUT OUR SERVICE FIELD
add_filter( 'woocommerce_checkout_fields' , 'About_Our_Service' );
// Our hooked in function - $fields is passed via the filter!
function About_Our_Service( $fields ) {
$fields['billing']['billing_meat'] = array(
'label' => __('How you Got to Know About Our Service?', 'woocommerce'),
'placeholder' => _x('', 'placeholder', 'woocommerce'),
'required' => false,
'clear' => false,
'type' => 'select',
'options' => array(
'google-ads' => __('Google', 'woocommerce' ),
'google-search' => __('Yahoo', 'woocommerce' ),
'warrior-forum' => __('Bing', 'woocommerce' ),
'facebook' => __('Facebook', 'woocommerce' ),
'other' => __('Other', 'woocommerce' ),
)
);
return $fields;
}
问题是:我没有在我的邮件中获得添加到计费字段的自定义字段的值。任何已经使用过的人都woocommerce
可以帮助我...?
我已经创建了一些添加到结帐中的更多自定义字段(但这些字段没有与核心字段一起添加),对于这些字段,我可以在我的邮件中获取值..
顺便说一句,我检查了这个线程:但没有太多与邮件相关的信息..
请有人调查一下这个..