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

61 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.
*
2015-11-03 13:31:20 +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.
*
* @see http://docs.woothemes.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.1.0
*/
2012-08-14 18:05:45 +00:00
2014-04-23 10:35:43 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
2014-04-23 10:35:43 +00:00
}
2014-04-23 10:35:43 +00:00
global $current_user;
2014-04-08 02:29:39 +00:00
$page_title = ( $load_address === 'billing' ) ? __( 'Billing Address', 'woocommerce' ) : __( 'Shipping Address', 'woocommerce' );
get_currentuserinfo();
?>
<?php wc_print_notices(); ?>
<?php if ( ! $load_address ) : ?>
2012-02-22 21:06:08 +00:00
<?php wc_get_template( 'myaccount/my-address.php' ); ?>
2012-02-22 21:06:08 +00:00
<?php else : ?>
<form method="post">
2012-08-14 18:05:45 +00:00
<h3><?php echo apply_filters( 'woocommerce_my_account_edit_address_title', $page_title ); ?></h3>
2012-08-14 18:05:45 +00:00
<?php do_action( "woocommerce_before_edit_address_form_{$load_address}" ); ?>
<?php foreach ( $address as $key => $field ) : ?>
2012-08-14 18:05:45 +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
<?php endforeach; ?>
<?php do_action( "woocommerce_after_edit_address_form_{$load_address}" ); ?>
2012-08-14 18:05:45 +00:00
2012-12-23 12:19:56 +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' ); ?>
2012-12-23 12:19:56 +00:00
<input type="hidden" name="action" value="edit_address" />
</p>
2012-08-14 18:05:45 +00:00
2012-02-22 21:06:08 +00:00
</form>
<?php endif; ?>