Remove first/last name from edit-account page
-
I need to remove the first and last name from the my-account/edit-account/ section. I found old code but none of it is working for some reason. Ive tried:
add_filter( 'woocommerce_save_account_details_required_fields', 'wc_remove_required_last_name' ); function wc_remove_required_last_name( $fields ) { unset( $fields['account_last_name'] ); return $fields; }
But nothing happens. Any insight is appreciated
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Remove first/last name from edit-account page’ is closed to new replies.