在Woocommerce管理员,订单和电子邮件中显示自定义付款字段

问题描述 投票:1回答:2

我需要在管理订单页面,thank_you和电子邮件通知中显示我的自定义结帐字段。

我使用Validate and save additional checkout field for specific payment gateway in Woocommerce答案代码来显示,验证和保存我的自定义字段。

Woocommerce display custom field data on admin order details我试图显示我的自定义字段保存输入值。

这是我到目前为止的代码:

// Display field value on the order edit page
add_action( 'woocommerce_admin_order_data_after_billing_address', 
    'show_Ean_nummer_in_admin', 10, 1 );
    function show_Ean_nummer_in_admin ( $order ){
    // Get "ean" custom field value
    $udfyld_ean = get_post_meta( $order_id, '_udfyld_ean', true );

    // Display "ean" custom field value
    echo '<p>'.__('EAN', 'woocommerce') . $udfyld_ean . '</p>';
} 

// Display field value on the order emails  
add_action( 'woocommerce_email_order_details', 'ean_in_emails' 50, 1 );
function ean_in_emails( $order, $sent_to_admin, $plain_text, $email ){
      // Get "ean" custom field value
    $udfyld_ean = get_post_meta( $order_id, '_udfyld_ean', true );

    // Display "ean" custom field value
    echo '<p>'.__('EAN', 'woocommerce') . $udfyld_ean . '</p>';
}

// Display field value in thank you
add_action( 'woocommerce_thankyou', 'ean_in_thankyou' );
function ean_in_thankyou() {
    // Get "ean" custom field value
    $udfyld_ean = get_post_meta( $order_id, '_udfyld_ean', true );
    // Display "ean" custom field value
    echo '<p>'.__('EAN', 'woocommerce') . $udfyld_ean . '</p>';
}  

但它不起作用。该字段确实附加到数据库,但不会显示在任何位置:

metakey in database

如何正确显示字段?

php wordpress woocommerce orders email-notifications
2个回答
1
投票

以下代码将在订单和电子邮件通知中显示您的“Udfyld EAN”自定义字段值:

1)在Woocommerce订单管理单页中显示:

// Display field value on the admin order edit page
add_action( 'woocommerce_admin_order_data_after_shipping_address', 'custom_field_admin_display_order_meta', 10, 1 );
function custom_field_admin_display_order_meta( $order ){
    $business_address = get_post_meta( $order->get_id(), 'Business Address?', true );
    if( $udfyld_ean = $order->get_meta('_udfyld_ean') )
        echo '<p><strong>'.__('Udfyld EAN', 'woocommerce').': </strong> ' . $udfyld_ean . '</p>';
}

代码位于活动子主题(或活动主题)的function.php文件中。经过测试和工作。

enter image description here

2)要在订单收到,订单视图和电子邮件通知上显示,您将使用:

add_filter( 'woocommerce_get_order_item_totals', 'add_udfyld_ean_row_to_order_totals', 10, 3 );
function add_udfyld_ean_row_to_order_totals( $total_rows, $order, $tax_display ) {;

    $new_total_rows = [];

    foreach($total_rows as $key => $total ){
        $new_total_rows[$key] = $total;

        if( $order->get_meta('_udfyld_ean') && 'payment_method' === $key ){
            $new_total_rows['udfyld_ean'] = array(
                'label' => __('Udfyld EAN', 'woocommerce'),
                'value' => esc_html( $order->get_meta('_udfyld_ean') ),
            );
        }
    }

    return $new_total_rows;
}

代码位于活动子主题(或活动主题)的function.php文件中。经过测试和工作。

enter image description here

enter image description here


0
投票

您正在使用以下代码来获取_udfyld_ean的值:

get_post_meta( $order_id, '_udfyld_ean', true );

但问题是,你没有在任何地方定义$order_id。您需要传递订单ID的有效值才能获得预期的输出。

© www.soinside.com 2019 - 2024. All rights reserved.