In file /woocommerce/templates/myaccount/my-address.php add

[php]
$customer_phone = get_user_meta( $customer_id, ‘billing_phone’, true );
// Displaying customer phone:
echo ‘<br>’; # Going on line below
echo __(‘Phone: ‘, ‘woocommerce’) . $customer_phone;
[/php]





