Woocommerce在谢谢页面获取自定义选择字段值

问题描述:

我正在使用woocommerce插件,我想在结帐页面添加自定义选择字段。我添加了一个函数和hook到function.php页面。它显示在结帐页面。但是,我怎么才能得到该字段在thankyou.php页面的价值。Woocommerce在谢谢页面获取自定义选择字段值

add_action('woocommerce_after_order_notes', 'my_custom_checkout_field'); 

function my_custom_checkout_field($checkout) { 
    echo '<div id="my_custom_checkout_field"><h3>' 
     . __('Select Where Your Points Go') . '</h3>'; 

    woocommerce_form_field(
     'points_go_to', array(
      'type'  => 'select', 
      'class' => array('form-row-wide'), 
      'required' => true, 
      'label' => __('Select a Side'), 
      'options' => array(
       'dfault' => __('Default1', 'woocommerce'), 
       'left' => __('Left Side', 'woocommerce'), 
       'right' => __('Right Side', 'woocommerce') 
      ) 
     ), 
     $checkout->get_value('points_go_to') 
    ); 

    echo '</div>'; 
} 

我试图以这种方式获得points_to_go字段值。但它没有奏效。

$checkout->get_points_go_to(); 

我有这些值和如何派生边值。

["_side"]=> array(1) { [0]=> string(6) "dfault" } ["_shipping_country"]=> array(1) { 
[0]=> string(2) "LK" } ["_shipping_first_name"]=> array(1) { [0]=> string(7) "saman" 
} ["_shipping_last_name"]=> array(1) { [0]=> string(11) "perera" } 

您可以尝试使用以下代码。

$side=$order->order_custom_fields['_side'][0]; 
+0

它的工作原理。谢谢。 – belekka