2012-08-14 18:05:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Checkout Form
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
|
|
|
* @version 1.6.4
|
|
|
|
*/
|
|
|
|
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2012-08-14 18:05:45 +00:00
|
|
|
global $woocommerce; $woocommerce_checkout = $woocommerce->checkout();
|
|
|
|
?>
|
2011-12-19 17:10:53 +00:00
|
|
|
|
|
|
|
<?php $woocommerce->show_messages(); ?>
|
2011-09-06 11:11:22 +00:00
|
|
|
|
2011-12-19 17:10:53 +00:00
|
|
|
<?php do_action('woocommerce_before_checkout_form');
|
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
|
|
|
|
if (get_option('woocommerce_enable_signup_and_login_from_checkout')=="no" && get_option('woocommerce_enable_guest_checkout')=="no" && !is_user_logged_in()) :
|
2012-10-16 09:45:33 +00:00
|
|
|
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;
|
|
|
|
endif;
|
|
|
|
|
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-08-21 12:06:54 +00:00
|
|
|
<?php if ( sizeof( $woocommerce_checkout->checkout_fields ) > 0 ) : ?>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-08-21 12:06:54 +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">
|
|
|
|
|
|
|
|
<?php do_action('woocommerce_checkout_billing'); ?>
|
|
|
|
|
|
|
|
</div>
|
2012-08-14 18:05:45 +00:00
|
|
|
|
2012-08-21 12:06:54 +00:00
|
|
|
<div class="col-2">
|
|
|
|
|
|
|
|
<?php do_action('woocommerce_checkout_shipping'); ?>
|
|
|
|
|
|
|
|
</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-08-21 12:06:54 +00:00
|
|
|
<?php do_action( 'woocommerce_checkout_after_customer_details'); ?>
|
|
|
|
|
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; ?>
|
|
|
|
|
2011-08-16 14:06:08 +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>
|
|
|
|
|
2011-09-21 15:13:53 +00:00
|
|
|
<?php do_action('woocommerce_after_checkout_form'); ?>
|