Что я пробовал:
Код: Выделить всё
function salesman_email_order_meta_fields( $fields, $sent_to_admin, $order ) {
$user_id = get_current_user_id();
$key = 'billing_salesman';
$single = true;
$current_user_has_discount = get_user_meta($user_id, $key, $single);
if( ! empty( $current_user_has_discount ) ){
$fields['_billing_salesman'] = array(
'label' => __( 'Sales Representative' ),
'value' => $current_user_has_discount,
'class' => array( 'salesRep' ),
);
}
$is_po = get_post_meta( $order->id, '_other_payment-admin-note', true );
if( ! empty( $is_po ) ){
$fields['_other_payment-admin-note'] = array(
'label' => __( 'PO Number' ),
'value' => $is_po,
'class' => array( 'poNum' ),
);
}
return $fields;
}
add_filter( 'woocommerce_email_order_meta_fields', 'salesman_email_order_meta_fields', 11, 3 );
Подробнее здесь: https://stackoverflow.com/questions/479 ... ifications