File: /var/www/shoetique/wp-content/themes/north-wp/woocommerce/myaccount/form-edit-address.php
<?php
/**
* Edit address form
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.1.0
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $woocommerce, $current_user;
$page_title = ( $load_address == 'billing' ) ? __( 'Billing Address','north' ) : __( 'Shipping Address','north' );
get_currentuserinfo();
?>
<section class="my_woocommerce_page page-padding">
<div class="custom_scroll">
<div class="small-12 small-centered medium-8 large-6 columns">
<div class="smalltitle text-center"><?php echo apply_filters( 'woocommerce_my_account_edit_address_title', $page_title ); ?></div>
<?php wc_print_notices() ?>
<?php if (!$load_address) : ?>
<?php wc_get_template('myaccount/my-address.php'); ?>
<?php else : ?>
<form method="post" class="edit-address-form">
<?php
foreach ($address as $key => $field) :
woocommerce_form_field( $key, $field, ! empty( $_POST[ $key ] ) ? wc_clean( $_POST[ $key ] ) : $field['value'] );
endforeach;
?>
<p>
<input type="submit" class="button" name="save_address" value="<?php _e( 'Save Address','north' ); ?>" />
<?php wp_nonce_field( 'woocommerce-edit_address' ); ?>
<input type="hidden" name="action" value="edit_address" />
</p>
</form>
<?php endif; ?>
</div>
</div>
</section>