woocommerce/templates/checkout/form.php

29 lines
784 B
PHP
Raw Normal View History

2011-08-09 15:16:18 +00:00
<?php do_action('before_checkout_form');
global $woocommerce;
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
<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
<?php do_action('woocommerce_checkout_order_review'); ?>
2011-08-09 15:16:18 +00:00
</form>
<?php do_action('after_checkout_form'); ?>