woocommerce/templates/checkout/form.php

26 lines
748 B
PHP
Raw Normal View History

2011-08-09 15:16:18 +00:00
<?php do_action('before_checkout_form');
// filter hook for include new pages inside the payment method
2011-08-10 17:11:11 +00:00
$get_checkout_url = apply_filters( 'woocommerce_get_checkout_url', woocommerce_cart::get_checkout_url() ); ?>
2011-08-09 15:16:18 +00:00
<form name="checkout" method="post" class="checkout" action="<?php echo $get_checkout_url; ?>">
<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'); ?>