From ce2a16c08d5e91511b724cac60baf75b2b9345b9 Mon Sep 17 00:00:00 2001 From: koenemann Date: Fri, 21 Apr 2017 13:42:31 +0200 Subject: [PATCH] Fixing col-1 problem on my account WooCommerce page --- woocommerce/myaccount/my-adress.php | 80 +++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 woocommerce/myaccount/my-adress.php diff --git a/woocommerce/myaccount/my-adress.php b/woocommerce/myaccount/my-adress.php new file mode 100644 index 0000000..ada4a17 --- /dev/null +++ b/woocommerce/myaccount/my-adress.php @@ -0,0 +1,80 @@ + __( 'Billing address', 'woocommerce' ), + 'shipping' => __( 'Shipping address', 'woocommerce' ), + ), $customer_id ); +} else { + $get_addresses = apply_filters( 'woocommerce_my_account_get_addresses', array( + 'billing' => __( 'Billing address', 'woocommerce' ), + ), $customer_id ); +} + +$oldcol = 1; +$col = 1; +?> + +

+ +

+ +'; ?> + + $title ) : ?> + +
+
+

+ +
+
+ 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 ), + '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.', 'woocommerce' ); + else + echo $formatted_address; + ?> +
+
+ + + +'; ?>