【发布时间】:2017-08-11 21:33:40
【问题描述】:
尝试将 Woocommerce billing_phone 字段添加到 my-account/edit-account/。它存在于更新地址页面中,但添加到 form-edit-account.php 时不会更新。
目前按照与其他字段相同的代码添加,如first_name:
<input type="text" class="form-control woocommerce-Input woocommerce-Input--phone input-text" name="billing_phone" id="billing_phone" value="<?php echo esc_attr( $user->billing_phone ); ?>" />
billing_phone 显示为值的表单图像:
但在用新号码更新后它不会改变…
我怎样才能让它被保存/更新?
【问题讨论】:
标签: php wordpress woocommerce hook-woocommerce user-data