how to remove the first and last names in the addresses tab in my account page
-
hello,
I’m looking to remove the first and last names from the billing and the shipping address section in the my account page.
I managed to do it in the checkout page using this code:/**
Remove all possible fields
**/function wc_remove_checkout_fields( $fields ) {
// Billing fields
unset( $fields[‘billing’][‘billing_first_name’] );
unset( $fields[‘billing’][‘billing_last_name’] );// Shipping fields
unset( $fields[‘shipping’][‘shipping_first_name’] );
unset( $fields[‘shipping’][‘shipping_last_name’] );// Order fields
unset( $fields[‘order’][‘order_comments’] );return $fields;
}
add_filter( ‘woocommerce_checkout_fields’, ‘wc_remove_checkout_fields’ );it works perfectly for the check out page, but the fields was not removed from the account page
- The topic ‘how to remove the first and last names in the addresses tab in my account page’ is closed to new replies.