2012-08-14 18:05:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Checkout Form
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
2012-12-10 12:34:55 +00:00
|
|
|
* @version 2.0.0
|
2012-08-14 18:05:45 +00:00
|
|
|
*/
|
|
|
|
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2012-12-10 12:34:55 +00:00
|
|
|
global $woocommerce;
|
2011-12-19 17:10:53 +00:00
|
|
|
|
2013-06-11 14:59:54 +00:00
|
|
|
wc_print_messages();
|
2011-09-06 11:11:22 +00:00
|
|
|
|
2013-01-21 15:12:15 +00:00
|
|
|
do_action( 'woocommerce_before_checkout_form', $checkout );
|
2011-09-06 11:11:22 +00:00
|
|
|
|
2011-11-04 17:48:04 +00:00
|
|
|
// If checkout registration is disabled and not logged in, the user cannot checkout
|
2012-12-10 12:34:55 +00:00
|
|
|
if ( ! $checkout->enable_signup && ! $checkout->enable_guest_checkout && ! is_user_logged_in() ) {
|
|
|
|
echo apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'woocommerce' ) );
|
2011-11-04 17:48:04 +00:00
|
|
|
return;
|
2012-12-10 12:34:55 +00:00
|
|
|
}
|
2011-11-04 17:48:04 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
// filter hook for include new pages inside the payment method
|
2011-09-06 11:11:22 +00:00
|
|
|
$get_checkout_url = apply_filters( 'woocommerce_get_checkout_url', $woocommerce->cart->get_checkout_url() ); ?>
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2011-09-21 06:50:40 +00:00
|
|
|
<form name="checkout" method="post" class="checkout" action="<?php echo esc_url( $get_checkout_url ); ?>">
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-12-10 12:34:55 +00:00
|
|
|
<?php if ( sizeof( $checkout->checkout_fields ) > 0 ) : ?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-12-10 12:34:55 +00:00
|
|
|
<?php do_action( 'woocommerce_checkout_before_customer_details' ); ?>
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2012-08-21 12:06:54 +00:00
|
|
|
<div class="col2-set" id="customer_details">
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-08-21 12:06:54 +00:00
|
|
|
<div class="col-1">
|
|
|
|
|
2012-12-10 12:34:55 +00:00
|
|
|
<?php do_action( 'woocommerce_checkout_billing' ); ?>
|
2012-08-21 12:06:54 +00:00
|
|
|
|
|
|
|
</div>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-08-21 12:06:54 +00:00
|
|
|
<div class="col-2">
|
|
|
|
|
2012-12-10 12:34:55 +00:00
|
|
|
<?php do_action( 'woocommerce_checkout_shipping' ); ?>
|
2012-08-21 12:06:54 +00:00
|
|
|
|
|
|
|
</div>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
</div>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-12-10 12:34:55 +00:00
|
|
|
<?php do_action( 'woocommerce_checkout_after_customer_details' ); ?>
|
2012-08-21 12:06:54 +00:00
|
|
|
|
2012-10-16 09:45:33 +00:00
|
|
|
<h3 id="order_review_heading"><?php _e( 'Your order', 'woocommerce' ); ?></h3>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2011-12-21 21:56:01 +00:00
|
|
|
<?php endif; ?>
|
|
|
|
|
2012-12-10 12:34:55 +00:00
|
|
|
<?php do_action( 'woocommerce_checkout_order_review' ); ?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
</form>
|
|
|
|
|
2013-01-21 15:12:15 +00:00
|
|
|
<?php do_action( 'woocommerce_after_checkout_form', $checkout ); ?>
|