繁体   English   中英

在我的帐户上添加手机字段 > 在 Woocommerce 中编辑帐户

[英]Add a mobile phone field on My account > edit account in Woocommerce

我的问题:如何在Woocommerce的my-account/edit-account/页面添加手机字段(相关模板: form-edit-account.php文件)

就像在以下答案线程中一样:
在 WooCommerce 我的帐户 > 帐户详细信息中保存自定义字段电话号码的值

但是此答案代码不完整,因为缺少一些挂钩函数。 感谢任何帮助来完成一些事情,这意味着现场显示。

您有 3 个选项可以在我的帐户 > 编辑帐户页面上显示自定义手机字段:

1) 作为使用woocommerce_edit_account_form_start动作钩子的第一个字段(见下文)。

2) 在使用woocommerce_edit_account_form动作钩子的现有字段之后

// Display the mobile phone field
// add_action( 'woocommerce_edit_account_form_start', 'add_billing_mobile_phone_to_edit_account_form' ); // At start
add_action( 'woocommerce_edit_account_form', 'add_billing_mobile_phone_to_edit_account_form' ); // After existing fields
function add_billing_mobile_phone_to_edit_account_form() {
    $user = wp_get_current_user();
    ?>
     <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide">
        <label for="billing_mobile_phone"><?php _e( 'Mobile phone', 'woocommerce' ); ?> <span class="required">*</span></label>
        <input type="text" class="woocommerce-Input woocommerce-Input--phone input-text" name="billing_mobile_phone" id="billing_mobile_phone" value="<?php echo esc_attr( $user->billing_mobile_phone ); ?>" />
    </p>
    <?php
}

// Check and validate the mobile phone
add_action( 'woocommerce_save_account_details_errors','billing_mobile_phone_field_validation', 20, 1 );
function billing_mobile_phone_field_validation( $args ){
    if ( isset($_POST['billing_mobile_phone']) && empty($_POST['billing_mobile_phone']) )
        $args->add( 'error', __( 'Please fill in your Mobile phone', 'woocommerce' ),'');
}

// Save the mobile phone value to user data
add_action( 'woocommerce_save_account_details', 'my_account_saving_billing_mobile_phone', 20, 1 );
function my_account_saving_billing_mobile_phone( $user_id ) {
    if( isset($_POST['billing_mobile_phone']) && ! empty($_POST['billing_mobile_phone']) )
        update_user_meta( $user_id, 'billing_mobile_phone', sanitize_text_field($_POST['billing_mobile_phone']) );
}

代码位于活动子主题(或活动主题)的 function.php 文件中。 测试和工作。

3)在特定位置,通过主题覆盖myaccount/form-edit-account.php模板文件,如本文档所述 这个答案线程上......

在这种情况下,您需要在模板中添加以下 html 代码就像在这个答案线程中一样

 <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide">
    <label for="billing_mobile_phone"><?php _e( 'Mobile phone', 'woocommerce' ); ?> <span class="required">*</span></label>
    <input type="text" class="woocommerce-Input woocommerce-Input--phone input-text" name="billing_mobile_phone" id="billing_mobile_phone" value="<?php echo esc_attr( $user->billing_mobile_phone ); ?>" />
</p>

在最后一种情况下,您需要在主题的 function.php 文件中添加第 2 节(验证和保存)中最后两个挂钩的函数。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM