当客户选择BACS网关时,我需要显示一个文本输入字段,我希望将输入字段值附加到订单和电子邮件通知中。
我正在使用Additional field on checkout for specific payment gateway in Woocommerce答案代码,其中我已将选择字段更改为输入文本字段:
add_filter( 'woocommerce_gateway_description', 'gateway_bacs_custom_fields', 20, 2 );
function gateway_bacs_custom_fields( $description, $method_id ){
//
if( $method_id == 'bacs' ){
ob_start(); // Start buffering
echo '<div class="bacs-fields" style="padding:10px 0;">';
woocommerce_form_field( 'field_slug', array(
'type' => 'text',
'label' => __("Udfyld EAN", "woocommerce"),
'class' => array('form-row-wide'),
'required' => true,
), '');
echo '<div>';
$description .= ob_get_clean(); // Append buffered content
}
return $description;
}
它在显示该字段的结帐页面上运行良好。
但是输入的文本值未保存到订单和电子邮件通知中。
如何在订单和电子邮件通知中保存并附加此输入的文本值?
答案 0 :(得分:1)
有许多遗漏的步骤,因为您使用的答案代码只是在BACS付款说明下的结帐中显示一个字段:
您需要(仅当选择BACS付款方式时):
因此,您可以看到您要问的是一个很大的(太宽泛了),并且在第3、4和5点还需要一个新的问题,在这里您需要说出您想在哪里将其输出(位置)。
第1步和第2步的所有代码。
add_filter( 'woocommerce_gateway_description', 'gateway_bacs_appended_custom_text_fields', 10, 2 );
function gateway_bacs_appended_custom_text_fields( $description, $payment_id ){
if( $payment_id === 'bacs' ){
ob_start(); // Start buffering
echo '<div class="bacs-fields" style="padding:10px 0;">';
woocommerce_form_field( 'udfyld_ean', array(
'type' => 'text',
'label' => __("Udfyld EAN", "woocommerce"),
'class' => array('form-row-wide'),
'required' => true,
), '');
echo '<div>';
$description .= ob_get_clean(); // Append buffered content
}
return $description;
}
// Process the field (validation)
add_action('woocommerce_checkout_process', 'udfyld_ean_checkout_field_validation');
function udfyld_ean_checkout_field_validation() {
if ( $_POST['payment_method'] === 'bacs' && isset($_POST['udfyld_ean']) && empty($_POST['udfyld_ean']) )
wc_add_notice( __( 'Please enter your "Udfyld EAN" number.' ), 'error' );
}
// Save "Udfyld EAN" number to the order as custom meta data
add_action('woocommerce_checkout_create_order', 'save_udfyld_ean_to_order_meta_data', 10, 4 );
function save_udfyld_ean_to_order_meta_data( $order, $data ) {
if( $data['payment_method'] === 'bacs' && isset( $_POST['udfyld_ean'] ) ) {
$order->update_meta_data( '_udfyld_ean', sanitize_text_field( $_POST['udfyld_ean'] ) );
}
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试并可以正常工作。
要从
$order
WC_Order
对象获取此自定义字段值,您将使用:$udfyld_ean = $order->get_meta('_udfyld_ean');
或者通过
$order_id
可以使用WordPressget_post_meta()
功能的订单ID:$udfyld_ean = get_post_meta( $order_id, '_udfyld_ean', true );
字段验证(对于BACS作为选定的付款方式):
输入的字段值将保存到订单元数据(wp_postmeta
表中的phpMyAdmin视图):