【问题标题】:Passing custom data from cart items to Order meta in Woocommerce 3在 Woocommerce 3 中将自定义数据从购物车项目传递到 Order 元数据
【发布时间】:2019-01-13 17:17:26
【问题描述】:

我已经实现了一个自定义 HTML 表单并要求我的客户传递一些数据以成功下订单。没有这些细节,我的订单就没有意义了。

对于 HTML 表单,我引用了下面的一些自定义 PHP 脚本,它处理来自表单的 POST 数据并以编程方式使用这些数据创建购物车。感谢@LoicTheAztec 帮助我实现这一目标。

script.php 文件代码:

<?php

    require_once("../wp-load.php");

    $customer_name = $_POST["customer_name"];
    $customer_email = $_POST["customer_email"];
    $customer_sex = $_POST["customer_sex"];
    $customer_age = $_POST["customer_age"];
    $product_id = $_POST["product_id"];

$custom_data = array(); // Initializing

    if( isset($_POST['customer_name']) && ! empty($_POST['customer_name']) )
        $custom_data['custom_data']['name']  =  $_POST['customer_name'];
    if( isset($_POST['customer_email']) && ! empty($_POST['customer_email']) )
        $custom_data['custom_data']['email'] = $_POST['customer_email'];
    if( isset($_POST['customer_sex']) && ! empty($_POST['customer_sex']) )
        $custom_data['custom_data']['sex']   = $_POST['customer_sex'];
    if( isset($_POST['customer_age']) && ! empty($_POST['customer_age']) )
        $custom_data['custom_data']['age']   = $_POST['customer_age'];

    global $woocommerce;

    if (WC()->cart->add_to_cart( $product_id, '1', '0', array(), $custom_data )) {
        var_dump($product_id);
    } else {
        var_dump($customer_name);
    }

    header("Location: ./checkout");
?>

如您所见,我们使用WC_Cart add_to_cart() 方法以编程方式创建了一个购物车项目。因此,所有自定义数据都将作为自定义购物车商品数据保存到购物车。

现在,我们还在functions.php 中放置了一个代码块,以便在结帐页面上打印这些数据。

add_action( 'woocommerce_after_order_notes', 'my_custom_checkout_field' );

function my_custom_checkout_field( $checkout ) {

    //var_dump($checkout);
    global $woocommerce;

    echo '<div id="my_custom_checkout_field"><h2>' . __('Child Info') . '</h2>';

    foreach ( $woocommerce->cart->get_cart() as $cart_item ) {
        if( isset($cart_item['custom_data']) ) {

            $custom_data = $cart_item['custom_data'];

            echo("<div>Name: <strong>" . $custom_data['name'] . "</strong></div>");
            echo("<div>Email: <strong>" . $custom_data['email'] . "</strong></div>");
            echo("<div>Gender: <strong>" . $custom_data['sex'] . "</strong></div>");
            echo("<div>Age: <strong>" . $custom_data['age'] . "</strong></div>");

        }

    }

    echo '</div>';

}

现在,我正在尝试将结帐页面上打印的这些数据也添加到订单页面。由于没有这些数据我的订单无法完成,所以用户需要填写这些数据,当他创建订单时,这些数据也需要传递到订单摘要页面。管理员还需要能够查看这些数据,以便处理订单。

我希望这个描述能清除一切,并再次感谢@LoicTheAztec 让我能够做到这一点。非常感谢。

【问题讨论】:

  • 在你的代码中,很奇怪你需要global $woocommerce;,因为在使用WC()时它已经包含在其中了……Docs WC()

标签: php wordpress woocommerce hook-woocommerce woocommerce-subscriptions


【解决方案1】:

更新 2 - 两个步骤

1) 保存数据:

我们会将此自定义客户数据保存为“隐藏”订单“item”元数据,然后也保存为订单元数据,因为这与具有唯一性的订阅相关订购商品:

// Utility function: array of custom customer key/label pairs
function custom_data_keys_labels(){
    return array(
        'name'  => __('Customer name'),     'email' => __('Customer email'),
        'sex'   => __('Customer gender'),   'age'   => __('Customer age'),
    );
}

// Add/save custom field value as custom HIDDEN order item meta data
add_action( 'woocommerce_checkout_create_order_line_item', 'custom_field_update_order_item_meta', 20, 4 );
function custom_field_update_order_item_meta( $item, $cart_item_key, $values, $order ) {
    if ( ! isset( $values['custom_data'] ) )
        return;

    $custom_data = $values['custom_data'];
    $meta_data   = array();
    $labels_keys = custom_data_keys_labels();

    foreach( $labels_keys as $key => $label ){
        if ( isset( $custom_data[$key] ) )
            $meta_data[$key] = $custom_data[$key];
    }

    if ( sizeof( $meta_data ) > 0 )
        $item->update_meta_data( __('_customer_data'), $meta_data );

    return $cart_item_data;
}

// Add/save custom fields values as custom order meta data
add_action( 'woocommerce_checkout_create_order', 'my_custom_checkout_field_update_order_meta', 20, 2 );
function my_custom_checkout_field_update_order_meta( $order, $data ) {

    $order_items = $order->get_items(); // Order itesm
    $item        = reset($order_items); // Keep only the first order item

    $item_data   = $item->get_meta( '_customer_data' ); // Get custom customer data

    if( is_array($item_data) && sizeof($item_data) > 0 ){
        foreach( $item_data as $key => $value ) {
            if ( isset( $item_data[$key] ) )
                $order->update_meta_data( '_customer_' . $key, $value );
        }
        // Mark as data saved
        $order->update_meta_data( '_customer_data_set', true );
    }
}

代码进入您的活动子主题(或活动主题)的 function.php 文件中。经过测试并且可以工作。


2) 显示保存的自定义数据:

下面的代码也使用了我们的实用函数custom_data_keys_labels()...

// Order pages (frontend and admin) display
add_filter( 'woocommerce_order_details_after_order_table' , 'display_admin_order_meta_cutom_data', 20, 1 ); // Front
add_action( 'woocommerce_admin_order_data_after_billing_address', 'display_admin_order_meta_cutom_data', 20, 1 ); // Admin
function display_admin_order_meta_cutom_data( $order ){
    $labels_keys = custom_data_keys_labels();
    if( $order->get_meta( '_customer_data_set' ) ){
        if( is_admin() ){ // Admin
            echo '<p>';
            foreach( $labels_keys as $key => $label ){
                if ( $order->get_meta( '_customer_' . $key ) )
                    echo '<strong>' . $label . ':</strong> ' . $order->get_meta( '_customer_' . $key ) . '<br>';
            }
            echo '</p>';
        }
        else { // Front end: order view and Order received (thankyou)
            echo '<table class="woocommerce-table"><tbody>';
            foreach( $labels_keys as $key => $label ){
                if ( $order->get_meta( '_customer_' . $key ) )
                    echo '<tr><th>' . $label . ':</th><td>' . $order->get_meta( '_customer_' . $key ) . '</td></tr>';
            }
            echo '</tbody></table>';
        }
    }
}

// Email notifications display
add_filter( 'woocommerce_email_order_meta_fields' , 'display_email_cutom_data', 20, 3 );
function display_email_cutom_data ( $fields, $sent_to_admin, $order ) {
    $labels_keys = custom_data_keys_labels();
    if( $order->get_meta( '_customer_data_set' ) ){
        foreach( $labels_keys as $key => $label ){
            $fields['customer_' . $key] = array(
                'label' => $label,
                'value' => $order->get_meta( '_customer_' . $key ),
            );
        }
    }
    return $fields;
}

代码进入您的活动子主题(或活动主题)的 function.php 文件中。经过测试并且可以工作。


【讨论】:

  • @PareshThakor 已更新...您现在可以查看。
  • @PareshThakor 自定义数据显示在后端计费客户详细信息下,请参阅此屏幕截图:cbleu.net/so-backend-orders.png...我在我的答案代码中使用woocommerce_admin_order_data_after_billing_address 钩子...当您将其用于订阅时,可能是问题。如果你能清理一些旧的过时的cmets,上面会很好(谢谢)。
  • 嗨@LoicTheAztec,我们有关于创建像sneakertub.com 这样的订阅框网站的简单教程吗?我们有静态页面、自定义表单、发送订单的表单数据,在我的帐户中用户将能够看到这些表单数据以及订单详细信息?
猜你喜欢
  • 2018-08-17
  • 1970-01-01
  • 1970-01-01
  • 2021-01-21
  • 2018-05-14
  • 1970-01-01
  • 2023-03-17
  • 1970-01-01
  • 2019-01-17
相关资源
最近更新 更多