woocommerce/templates/checkout/form-shipping.php

68 lines
2.4 KiB
PHP
Raw Normal View History

<?php
/**
2015-11-03 13:53:50 +00:00
* Checkout shipping information 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/checkout/form-shipping.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-07-19 10:30:31 +00:00
* @see https://docs.woocommerce.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.2.0
*/
2012-08-14 18:05:45 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<div class="woocommerce-shipping-fields">
<?php if ( true === WC()->cart->needs_shipping_address() ) : ?>
<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( apply_filters( 'woocommerce_ship_to_different_address_checked', 'shipping' === get_option( 'woocommerce_ship_to_destination' ) ? 1 : 0 ), 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_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>