parent
a09969a116
commit
3267de6daa
|
@ -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; ?>
|
||||
|
||||
|
|
Loading…
Reference in New Issue