2011-09-21 15:13:53 +00:00
|
|
|
<?php do_action('woocommerce_before_checkout_form');
|
2011-09-06 11:11:22 +00:00
|
|
|
|
|
|
|
global $woocommerce;
|
|
|
|
|
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()) :
|
|
|
|
echo apply_filters('woocommerce_checkout_must_be_logged_in_message', __('You must be logged in to checkout.', 'woothemes'));
|
|
|
|
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 ); ?>">
|
2011-08-09 15:16:18 +00:00
|
|
|
|
|
|
|
<div class="col2-set" id="customer_details">
|
|
|
|
<div class="col-1">
|
|
|
|
|
2011-08-10 17:11:11 +00:00
|
|
|
<?php do_action('woocommerce_checkout_billing'); ?>
|
2011-08-09 15:16:18 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="col-2">
|
|
|
|
|
2011-08-10 17:11:11 +00:00
|
|
|
<?php do_action('woocommerce_checkout_shipping'); ?>
|
2011-08-09 15:16:18 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2011-08-10 17:11:11 +00:00
|
|
|
<h3 id="order_review_heading"><?php _e('Your order', 'woothemes'); ?></h3>
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2011-08-16 14:06:08 +00:00
|
|
|
<?php do_action('woocommerce_checkout_order_review'); ?>
|
2011-08-09 15:16:18 +00:00
|
|
|
|
|
|
|
</form>
|
|
|
|
|
2011-09-21 15:13:53 +00:00
|
|
|
<?php do_action('woocommerce_after_checkout_form'); ?>
|