自定义Woocommerce结帐选择字段保存的值是一个数字而不是文本

时间:2018-05-15 07:36:56

标签: php wordpress woocommerce html-select checkout

我有一点问题,我在结帐页面做了可选择的字段,当我选择该选项时,在管理订单中是打印数字而不是文字。

我的代码如下:

 foreach($xml as $data){
     $location = $data -> A0_NAME;
     if (strpos($location, 'LT') !== false) {

         $vieta = $data -> NAME;
         $adresas = $data-> A2_NAME;
         $zip = $data -> ZIP;
        $fulladress = $vieta . ' ' . $adresas . ' ' . $zip;
         $option[] = $fulladress;
     }
 }

woocommerce_form_field( 'my_field_name1', array(
        'type'        => 'select',
        'required'    => true,
        'class'       => array('my-field-class form-row-wide'),
        'label'       => __('Select an option:', 'my_theme_slug'),
        'options'     => $option
        ),
     $checkout->get_value( 'my_field_name1' ));

有一条线正在更新我的订单:

 update_post_meta($order_id, 'my_field', sanitize_text_field( $_POST['my_field_name1']) );

1 个答案:

答案 0 :(得分:1)

问题来自您的 $option数组键 ...您肯定有类似的内容:

$option = array( 'Text one', 'Text two', 'Text three');

$option = array( '1' => 'Text one', '2' => 'Text two', '3' => 'Text three');

因此,在将数据字段保存到订单时,它会保存所选数据密钥...

相反,你需要这样设置:

$option = array( 
    'Text one'   => 'Text one', 
    'Text two'   => 'Text two', 
    'Text three' => 'Text three',
);

有关更新后代码的更新:

这样它会保存文本而不是密钥号...所以你的完整代码:

$options = [];
foreach($xml as $data){
    $location = $data -> A0_NAME;
    if (strpos($location, 'LT') !== false) {

        $vieta = $data -> NAME;
        $adresas = $data-> A2_NAME;
        $zip = $data -> ZIP;
        $fulladress = $vieta . ' ' . $adresas . ' ' . $zip;
        $options[$fulladress] = $fulladress;
    }
}

woocommerce_form_field( 'my_field_name1', array(
    'type'        => 'select',
    'required'    => true,
    'class'       => array('my-field-class form-row-wide'),
    'label'       => __('Select an option:', 'my_theme_slug'),
    'options'     => $options,
), $checkout->get_value( 'my_field_name1' ) );

现在你将获得一个文本值......