Answer the question
In order to leave comments, you need to log in
How to remove last name field in Woocommerce account?
Hello guys, tell me how to remove the Last Name field from the Woocommerce personal account
.
Please help, thanks in advance!
Answer the question
In order to leave comments, you need to log in
1. Through functions, you need to make the fields optional
add_filter('woocommerce_save_account_details_required_fields', 'remove_required_fields');
function remove_required_fields( $required_fields ) {
unset($required_fields['account_first_name']);
unset($required_fields['account_last_name']);
return $required_fields;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question