woocommerce/templates/checkout/form-shipping.php

69 lines
2.1 KiB
PHP
Raw Normal View History

<?php
/**
2012-08-14 18:05:45 +00:00
* Checkout shipping information form
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.1.2
*/
2012-08-14 18:05:45 +00:00
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
?>
<div class="woocommerce-shipping-fields">
2014-03-28 14:41:57 +00:00
<?php if ( WC()->cart->needs_shipping_address() === true ) : ?>
<?php
if ( empty( $_POST ) ) {
2012-08-14 18:05:45 +00:00
$ship_to_different_address = get_option( 'woocommerce_ship_to_destination' ) === 'shipping' ? 1 : 0;
$ship_to_different_address = apply_filters( 'woocommerce_ship_to_different_address_checked', $ship_to_different_address );
2012-08-14 18:05:45 +00:00
} else {
2012-08-14 18:05:45 +00:00
$ship_to_different_address = $checkout->get_value( 'ship_to_different_address' );
2012-08-14 18:05:45 +00:00
}
?>
2012-08-14 18:05:45 +00:00
<h3 id="ship-to-different-address">
<label for="ship-to-different-address-checkbox" class="checkbox"><?php _e( 'Ship to a different address?', 'woocommerce' ); ?></label>
<input id="ship-to-different-address-checkbox" class="input-checkbox" <?php checked( $ship_to_different_address, 1 ); ?> type="checkbox" name="ship_to_different_address" value="1" />
</h3>
<div class="shipping_address">
2012-08-14 18:05:45 +00:00
<?php do_action( 'woocommerce_before_checkout_shipping_form', $checkout ); ?>
2012-08-14 18:05:45 +00:00
<?php foreach ( $checkout->checkout_fields['shipping'] as $key => $field ) : ?>
2012-08-14 18:05:45 +00:00
<?php woocommerce_form_field( $key, $field, $checkout->get_value( $key ) ); ?>
2012-08-14 18:05:45 +00:00
<?php endforeach; ?>
2012-08-14 18:05:45 +00:00
<?php do_action( 'woocommerce_after_checkout_shipping_form', $checkout ); ?>
2012-08-14 18:05:45 +00:00
</div>
2012-08-14 18:05:45 +00:00
<?php endif; ?>
2012-08-14 18:05:45 +00:00
<?php do_action( 'woocommerce_before_order_notes', $checkout ); ?>
2012-08-14 18:05:45 +00:00
<?php if ( apply_filters( 'woocommerce_enable_order_notes_field', get_option( 'woocommerce_enable_order_comments', 'yes' ) === 'yes' ) ) : ?>
2012-08-14 18:05:45 +00:00
<?php if ( ! WC()->cart->needs_shipping() || WC()->cart->ship_to_billing_address_only() ) : ?>
2012-08-14 18:05:45 +00:00
<h3><?php _e( 'Additional Information', 'woocommerce' ); ?></h3>
2012-08-14 18:05:45 +00:00
<?php endif; ?>
2012-08-14 18:05:45 +00:00
<?php foreach ( $checkout->checkout_fields['order'] as $key => $field ) : ?>
2012-08-14 18:05:45 +00:00
<?php woocommerce_form_field( $key, $field, $checkout->get_value( $key ) ); ?>
2012-08-14 18:05:45 +00:00
<?php endforeach; ?>
2012-08-14 18:05:45 +00:00
<?php endif; ?>
2012-08-14 18:05:45 +00:00
<?php do_action( 'woocommerce_after_order_notes', $checkout ); ?>
</div>