0

过去几天,我一直无法在我的 woocommerce 结帐页面上存储动态生成的字段数据。我正在使用 woocommerce 预订插件,我必须在其中获取人员类型的名称。为此,我已经这样做了。

// Add checkout custom text fields
add_action( 'woocommerce_before_order_notes', 'add_checkout_custom_text_fields', 20, 1 );
function add_checkout_custom_text_fields( $checkout) {
$index = 0;

// 1st Loop through cart items
    foreach(WC()->cart->get_cart() as $cart_item){

    // 2nd Loop through each unit related to item quantity
    for($i = 1; $i <= $cart_item['booking']['Adults']; $i++){
        $index++;

        woocommerce_form_field("my_field$index", array(
            'type' =>'text',
            'class'=>array('my-field-class form-row-wide'),
            'label'=>__('Adults')." ($i)",
            'placeholder'=>__('Enter adult name'),
            'required' => true,
        ), $checkout->get_value("my_field$index"));
    }

    for($i = 1; $i <= $cart_item['booking']['Childs']; $i++){
        $index++;

        woocommerce_form_field("my_field$index", array(
            'type' =>'text',
            'class'=>array('my-field-class form-row-wide'),
            'label'=>__('Childs')." ($i)",
            'placeholder'=>__('Enter child name'),
            'required' => true,
        ), $checkout->get_value("my_field$index"));
    }
}
}

我的结帐页面上的字段运行良好,但现在我希望它们存储在数据库中并显示在管理订单页面和感谢订单页面上,这对我来说变得很沮丧,我该如何解决这个问题,Stackoverflow 是唯一的平台我相信可以得到解决方案。

编辑花了很多时间后,我成功地将自定义数据存储到数据库中,现在我希望它显示在管理员和感谢页面上。

这是我保存字段以发布元数据的代码。

// Save fields in order meta data
 add_action('woocommerce_checkout_create_order', 'save_custom_fields_to_order_meta_data', 20, 2 );
function save_custom_fields_to_order_meta_data( $order, $data ) {
$index = 0;

// 1st Loop through order items
foreach(WC()->cart->get_cart() as $cart_item){

    // 2nd Loop through each unit related to item quantity
    for($i = 1; $i <= $cart_item['booking']['Adults']; $i++){
        $index++;
        if (isset( $_POST['my_field'.$index.'']) && ! empty($_POST['my_field'.$index.'']) ){
            $order->update_meta_data( '_my_field_'.$index.'_'.$i, esc_attr( $_POST['my_field'.$index.''] ) );
        }
    }

    for($i = 1; $i <= $cart_item['booking']['Childs']; $i++){
        $index++;
        if (isset( $_POST['my_field'.$index.'']) && ! empty($_POST['my_field'.$index.'']) ){
            $order->update_meta_data( '_my_field_'.$index.'_'.$i, esc_attr( $_POST['my_field'.$index.''] ) );
        }
    }
}
}
4

1 回答 1

0
// Display fields in order edit    

 add_action('woocommerce_admin_order_data_after_billing_address','display_custom_fields_in_admin_order', 20, 1);
  function display_custom_fields_in_admin_order( $order ){
  global $wpdb;
  $results = $wpdb->get_results( "SELECT * FROM `wp_postmeta` WHERE `meta_key` LIKE '_adult%' and post_id = ".$order->get_id()."" );
 $i= 1;
 foreach($results as $result) {
 echo '<p><strong>Adult Name '.$i.':</strong>' . $result->meta_value . '</p>';
 $i++;
}

  $results = $wpdb->get_results( "SELECT * FROM `wp_postmeta` WHERE `meta_key` LIKE '_child%' and post_id = ".$order->get_id()."" );
$i= 1;
foreach($results as $result) {
echo '<p><strong>Child Name '.$i.':</strong>' . $result->meta_value . '</p>';
$i++;
}

 }
于 2019-12-17T13:10:22.153 回答