我使用woocommerce
(免費插件)..我想一個自定義字段添加到計費領域..沒有收到電子郵件的自定義字段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
的人都可以幫助我解決這個問題......?
我已經創建並加入到收銀臺(但與核心字段一起these're不添加)一些更多的自定義字段,這些字段我能在我的郵件獲取值..
通過唉,我選中此thread:但沒有涉及到的郵件沒有太大的信息..
煩請有人考慮這個..
任何人都好嗎? – Nancy