duanfen9090 2017-10-13 10:13 采纳率: 100%
浏览 85
已采纳

在woocommerce中添加带有默认值的自定义隐藏结帐字段

How to add custom field in checkout Woocommerce with hidden type and default value?

please check below my code:

function pord_checkout_fields( $fields ) {
    $fields['billing']['quickbook'] = array(
        'type' => 'hidden',
        'label'     => __('Purchase Order Number', 'woocommerce'),
        'placeholder'  => _x('Purchase Order Number', 'placeholder', 'woocommerce'),
        'required'  => false,
        'class'     => array('form-row-wide'),
        'clear'     => true
     );

    return $fields;
}
add_filter('woocommerce_checkout_fields','pord_checkout_fields');
  • 写回答

2条回答 默认 最新

  • duandingqi9442 2017-10-13 11:45
    关注

    Hidden type doesn't exist buy default for woocommerce form fields… But you can create it.

    • The first function will create that hidden field type.
    • The 2nd function will add this hidden custom field (where you will set the value)
    • The third function will display this value in order edit page

    Here is the code:

    // Create hidden checkout field type
    add_filter( 'woocommerce_form_field_hidden', 'create_checkout_hidden_field_type', 5, 4 );
    function create_checkout_hidden_field_type( $field, $key, $args, $value ){
        return '<input type="hidden" name="'.esc_attr($key).'" id="'.esc_attr($args['id']).'" value="'.esc_attr($args['default']).'" />';
    }
    
    // Add custom hidden billing checkout field
    add_filter( 'woocommerce_checkout_fields', 'custom_billing_fields' );
    function custom_billing_fields( $fields ){
    
        ## HERE set the value (for this hidden checkout field)
        $value = "The value";
    
        $fields['billing']['billing_quickbook'] = array(
            'type' => 'hidden',
            'label'     => __('Purchase Order Number', 'woocommerce'),
            'placeholder'  => _x('Purchase Order Number', 'placeholder', 'woocommerce'),
            'required'  => false,
            'class'     => array('form-row-wide'),
            'clear'     => true,
            'default'   => $value, // The custom field value
        );
        return $fields;
    }
    
    // Display the field value on the admin order edit page (after billing address)
    add_action( 'woocommerce_admin_order_data_after_billing_address', 'display_custom_field_in_admin_order_meta', 10, 1 );
    function display_custom_field_in_admin_order_meta($order){
        echo '<p><strong>'.__('Quickbook').':</strong> ' . get_post_meta( $order->get_id(), '_billing_quickbook', true ) . '</p>';
    }
    

    The Code goes in function.php file of your active child theme (or theme) or also in any plugin file.

    USAGE (RETRIEVING THE VALUE):

    To get the value from the Order ID $order_id, you will use (if needed):

    $value = get_post_meta( $order_id, '_billing_quickbook', true );
    

    This code is tested and works in WooCommerce 3+.


    Official developer documentation: Customizing checkout fields using actions and filters

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同