woocommerce/templates/myaccount/form-edit-address.php

58 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
2015-11-03 13:53:50 +00:00
* Edit address form
2012-08-14 18:05:45 +00:00
*
2015-11-03 13:31:20 +00:00
* This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-edit-address.php.
*
2016-02-12 11:28:41 +00:00
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
2016-01-15 20:34:37 +00:00
* @see http://docs.woothemes.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.6.0
*/
2012-08-14 18:05:45 +00:00
2014-04-23 10:35:43 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit;
2014-04-23 10:35:43 +00:00
}
$page_title = ( $load_address === 'billing' ) ? __( 'Billing Address', 'woocommerce' ) : __( 'Shipping Address', 'woocommerce' );
wc_print_notices();
wc_get_template( 'myaccount/navigation.php' ); ?>
2012-02-22 21:06:08 +00:00
2016-01-15 20:34:37 +00:00
<div class="my-account-content">
<?php if ( ! $load_address ) : ?>
<?php wc_get_template( 'myaccount/my-address.php' ); ?>
<?php else : ?>
2012-02-22 21:06:08 +00:00
2016-01-15 20:34:37 +00:00
<form method="post">
2012-02-22 21:06:08 +00:00
2016-01-15 20:34:37 +00:00
<h3><?php echo apply_filters( 'woocommerce_my_account_edit_address_title', $page_title ); ?></h3>
2012-08-14 18:05:45 +00:00
2016-01-15 20:34:37 +00:00
<?php do_action( "woocommerce_before_edit_address_form_{$load_address}" ); ?>
2012-08-14 18:05:45 +00:00
2016-01-15 20:34:37 +00:00
<?php foreach ( $address as $key => $field ) : ?>
2016-01-15 20:34:37 +00:00
<?php woocommerce_form_field( $key, $field, ! empty( $_POST[ $key ] ) ? wc_clean( $_POST[ $key ] ) : $field['value'] ); ?>
2012-08-14 18:05:45 +00:00
2016-01-15 20:34:37 +00:00
<?php endforeach; ?>
2012-08-14 18:05:45 +00:00
2016-01-15 20:34:37 +00:00
<?php do_action( "woocommerce_after_edit_address_form_{$load_address}" ); ?>
2016-01-15 20:34:37 +00:00
<p>
<input type="submit" class="button" name="save_address" value="<?php esc_attr_e( 'Save Address', 'woocommerce' ); ?>" />
<?php wp_nonce_field( 'woocommerce-edit_address' ); ?>
<input type="hidden" name="action" value="edit_address" />
</p>
2012-08-14 18:05:45 +00:00
2016-01-15 20:34:37 +00:00
</form>
2012-08-14 18:05:45 +00:00
2016-01-15 20:34:37 +00:00
<?php endif; ?>
</div>