Hooks for #1376. Closes #1376.

This commit is contained in:
Mike Jolley 2012-08-21 13:06:54 +01:00
parent a09969a116
commit 3267de6daa
1 changed files with 17 additions and 10 deletions

View File

@ -25,22 +25,29 @@ $get_checkout_url = apply_filters( 'woocommerce_get_checkout_url', $woocommerce-
<form name="checkout" method="post" class="checkout" action="<?php echo esc_url( $get_checkout_url ); ?>">
<?php if (sizeof($woocommerce_checkout->checkout_fields)>0) : ?>
<?php if ( sizeof( $woocommerce_checkout->checkout_fields ) > 0 ) : ?>
<div class="col2-set" id="customer_details">
<div class="col-1">
<?php do_action( 'woocommerce_checkout_before_customer_details'); ?>
<?php do_action('woocommerce_checkout_billing'); ?>
<div class="col2-set" id="customer_details">
<div class="col-1">
<?php do_action('woocommerce_checkout_billing'); ?>
</div>
<div class="col-2">
<?php do_action('woocommerce_checkout_shipping'); ?>
</div>
</div>
<div class="col-2">
<?php do_action('woocommerce_checkout_shipping'); ?>
<?php do_action( 'woocommerce_checkout_after_customer_details'); ?>
</div>
</div>
<h3 id="order_review_heading"><?php _e('Your order', 'woocommerce'); ?></h3>
<h3 id="order_review_heading"><?php _e('Your order', 'woocommerce'); ?></h3>
<?php endif; ?>