我需要在“编辑我的帐户”页面中验证并保存自定义字段。我在woocommerce/myaccount/form-edit-account.php
找到了此页面的模板。我设法在此模板文件中添加自定义字段。现在我需要验证它们,如果它们都很好 - 保存用户数据。
在这种情况下我需要使用什么钩子?我可以编辑class-wc-form-handler.php
,但我不想。
由于
答案 0 :(得分:2)
我找到了一个动作挂钩,可用于验证“编辑帐户”页面上的自定义字段或现有字段。
在functions.php中添加以下代码。
add_action('user_profile_update_errors','wdm_validate_custom_field',10,1);
function wdm_validate_custom_field($args)
{
if ( isset( $_POST['custom_field'] ) )
{
if(strlen($_POST['custom_field'])<6 )
$args->add( 'error', __( 'Your error message', 'woocommerce' ),'');
}
}
答案 1 :(得分:0)
试试这个。
add_filter( 'woocommerce_process_myaccount_field_{your_custom_field_name}' , 'validate_edit_address' );
function validate_edit_address() {
$variable = $_POST['your_custom_field_name'];
if ( preg_match("/[ก-๙a-zA-Z]+$/", $variable ) ){
wc_add_notice( __( '<strong>Error</strong>' ), 'error' );
}
return $variable ;
}
示例:
add_filter( 'woocommerce_process_myaccount_field_billing_house_number' , 'validate_edit_address' );
function validate_edit_address() {
$variable = $_POST['billing_house_number'];
if ( preg_match("/[ก-๙a-zA-Z]+$/", $variable ) ){
wc_add_notice( __( '<strong>Error</strong>' ), 'error' );
}
return $variable ;
}