
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
/**
 * My Addresses
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.6.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

$customer_id = get_current_user_id();
//get_option( 'woocommerce_calc_shipping' ) !== 'no'

if ( ! wc_ship_to_billing_address_only() && wc_shipping_enabled() ) {
	$page_title = apply_filters( 'woocommerce_my_account_my_address_title', esc_attr__( 'My Addresses', 'massive-dynamic' ) );
	$get_addresses = apply_filters( 'woocommerce_my_account_get_addresses', array(
		'billing' => esc_attr__( 'Billing Address', 'massive-dynamic' ),
		'shipping' => esc_attr__( 'Shipping Address', 'massive-dynamic' )
	), $customer_id );
} else {
	$page_title = apply_filters( 'woocommerce_my_account_my_address_title', esc_attr__( 'My Address', 'massive-dynamic' ) );
	$get_addresses    = apply_filters( 'woocommerce_my_account_get_addresses', array(
		'billing' =>  esc_attr__( 'Billing Address', 'massive-dynamic' )
	), $customer_id );
}

$col = 1;
?>

<?php if ( ! wc_ship_to_billing_address_only() && get_option( 'woocommerce_calc_shipping' ) !== 'no' ) echo '<div class="col2-set addresses">'; ?>

<?php foreach ( $get_addresses as $name => $title ) : ?>

	<div class="custom-edit-<?php echo esc_attr($name) ?> address">

		<h2 class="title">
			<h3><?php echo esc_attr($title); ?></h3>
		</h2>

		<address>
			<?php
			global $md_allowed_HTML_tags;

			$address = apply_filters( 'woocommerce_my_account_my_address_formatted_address', array(

				), $customer_id, esc_attr($name) );

				$formatted_address = WC()->countries->get_formatted_address( $address );

				if ( ! $formatted_address )
					esc_attr_e( 'You have not set up this type of address yet.', 'massive-dynamic' );
				else
					echo wp_kses($formatted_address,$md_allowed_HTML_tags);

			?>
		</address>

		<a href="<?php echo wc_get_endpoint_url( 'edit-address', esc_attr($name) ); ?>" class="edit changed-target"> <?php esc_attr_e( 'Edit', 'massive-dynamic' ); ?> </a>

	</div>

<?php endforeach; ?>

<?php if ( ! wc_ship_to_billing_address_only() && wc_shipping_enabled() ) echo '</div>'; ?>
