WooCommerce 在給訪客註冊會員時會提供 【使用者名稱】【電子郵件】【密碼】 的欄位填寫,而我另外新增了【名字】欄位,但是 WooCommerce 仍然會以 【使用者名稱】【電子郵件】自動產生【顯示名稱】,像這樣:
你好 john_55(不是 John_55 嗎?請登出)
但我希望【顯示名稱】像這樣:
你好 王小明(不是 王小明 嗎?請登出)
要怎麼做呢?
1. 註冊頁面新增【名字】欄位
首先,我們要在註冊頁面提供【名字】填寫欄位,將以下程式碼貼到 functions.php 或 Code Snippet 外掛。
1 | function wooc_extra_register_fields() {?> |
2 | <p class = "form-row form-row-first" > |
3 | <label for = "reg_billing_first_name" >姓名<span class = "required" >*</span></label> |
4 | <input type= "text" class = "input-text" name= "billing_first_name" id= "reg_billing_first_name" value= "<?php if ( ! empty( $_POST['billing_first_name'] ) ) esc_attr_e( $_POST['billing_first_name'] ); ?>" /> |
6 | <div class = "clear" ></div> |
9 | add_action( 'woocommerce_register_form_start' , 'wooc_extra_register_fields' ); |
14 | function wooc_validate_extra_register_fields( $username , $email , $validation_errors ) { |
15 | if ( isset( $_POST [ 'billing_first_name' ] ) && empty ( $_POST [ 'billing_first_name' ] ) ) { |
16 | $validation_errors ->add( 'billing_first_name_error' , __( '<strong>Error</strong>: First name is required!' , 'woocommerce' ) ); |
18 | return $validation_errors ; |
20 | add_action( 'woocommerce_register_post' , 'wooc_validate_extra_register_fields' , 10, 3 ); |
25 | function wooc_save_extra_register_fields( $customer_id ) { |
27 | if ( isset( $_POST [ 'billing_first_name' ] ) ) { |
29 | update_user_meta( $customer_id , 'first_name' , sanitize_text_field( $_POST [ 'billing_first_name' ] ) ); |
31 | update_user_meta( $customer_id , 'billing_first_name' , sanitize_text_field( $_POST [ 'billing_first_name' ] ) ); |
34 | add_action( 'woocommerce_created_customer' , 'wooc_save_extra_register_fields' ); |
2. 以顧客的名字作為【顯示名稱】
將下列程式碼貼到 functions.php 或 Code Snippet 外掛。
1 | add_filter( 'pre_user_display_name' , 'cfw_set_display_name_to_forename' ); |
3 | function cfw_set_display_name_to_forename( $display_name ) { |
5 | if ( isset( $_POST [ 'billing_first_name' ] ) ) { |
6 | $display_name = $_POST [ 'billing_first_name' ]; |
8 | if ( isset( $_POST [ 'first_name' ] ) ) { |
9 | $display_name = $_POST [ 'first_name' ]; |
以後有新用戶註冊時,就會自動以【名字】來當作【顯示名稱】