How to display billing phone on my account page?
-
I tried adding some code to my-address.php
<address> <?php $address = apply_filters( 'woocommerce_my_account_my_address_formatted_address', array( 'first_name' => get_user_meta( $customer_id, $name . '_first_name', true ), 'last_name' => get_user_meta( $customer_id, $name . '_last_name', true ), 'company' => get_user_meta( $customer_id, $name . '_company', true ), 'address_1' => get_user_meta( $customer_id, $name . '_address_1', true ), 'address_2' => get_user_meta( $customer_id, $name . '_address_2', true ), 'city' => get_user_meta( $customer_id, $name . '_city', true ), 'state' => get_user_meta( $customer_id, $name . '_state', true ), 'postcode' => get_user_meta( $customer_id, $name . '_postcode', true ), 'billing_phone' => get_user_meta( $customer_id, $name . '_billing_phone', true ), 'country' => get_user_meta( $customer_id, $name . '_country', true ) ), $customer_id, $name ); $formatted_address = WC()->countries->get_formatted_address( $address ); if ( ! $formatted_address ) _e( 'You have not set up this type of address yet.', 'mk_framework' ); else echo $formatted_address; ?> </address>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to display billing phone on my account page?’ is closed to new replies.