woocommerce/templates/checkout/form-checkout.php

41 lines
1.4 KiB
PHP
Raw Normal View History

2012-01-12 00:54:45 +00:00
<?php global $woocommerce; $woocommerce_checkout = $woocommerce->checkout(); ?>
2011-12-19 17:10:53 +00:00
<?php $woocommerce->show_messages(); ?>
2011-12-19 17:10:53 +00:00
<?php do_action('woocommerce_before_checkout_form');
// 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-01-05 11:31:22 +00:00
echo apply_filters('woocommerce_checkout_must_be_logged_in_message', __('You must be logged in to checkout.', 'woocommerce'));
return;
endif;
2011-08-09 15:16:18 +00:00
// filter hook for include new pages inside the payment method
$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
<?php if (sizeof($woocommerce_checkout->checkout_fields)>0) : ?>
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>
2012-01-05 11:31:22 +00:00
<h3 id="order_review_heading"><?php _e('Your order', 'woocommerce'); ?></h3>
2011-08-09 15:16:18 +00:00
<?php endif; ?>
<?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'); ?>