| @@ 39-43 (lines=5) @@ | ||
| 36 | ||
| 37 | <?php do_action( 'woocommerce_before_checkout_billing_form', $checkout ); ?> |
|
| 38 | ||
| 39 | <?php foreach ( $checkout->checkout_fields['billing'] as $key => $field ) : ?> |
|
| 40 | ||
| 41 | <?php woocommerce_form_field( $key, $field, $checkout->get_value( $key ) ); ?> |
|
| 42 | ||
| 43 | <?php endforeach; ?> |
|
| 44 | ||
| 45 | <?php do_action('woocommerce_after_checkout_billing_form', $checkout ); ?> |
|
| 46 | ||
| @@ 65-69 (lines=5) @@ | ||
| 62 | ||
| 63 | <p><?php _e( 'Create an account by entering the information below. If you are a returning customer please login at the top of the page.', 'woocommerce' ); ?></p> |
|
| 64 | ||
| 65 | <?php foreach ( $checkout->checkout_fields['account'] as $key => $field ) : ?> |
|
| 66 | ||
| 67 | <?php woocommerce_form_field( $key, $field, $checkout->get_value( $key ) ); ?> |
|
| 68 | ||
| 69 | <?php endforeach; ?> |
|
| 70 | ||
| 71 | <div class="clear"></div> |
|
| 72 | ||
| @@ 36-40 (lines=5) @@ | ||
| 33 | ||
| 34 | <?php do_action( 'woocommerce_before_checkout_shipping_form', $checkout ); ?> |
|
| 35 | ||
| 36 | <?php foreach ( $checkout->checkout_fields['shipping'] as $key => $field ) : ?> |
|
| 37 | ||
| 38 | <?php woocommerce_form_field( $key, $field, $checkout->get_value( $key ) ); ?> |
|
| 39 | ||
| 40 | <?php endforeach; ?> |
|
| 41 | ||
| 42 | <?php do_action( 'woocommerce_after_checkout_shipping_form', $checkout ); ?> |
|
| 43 | ||
| @@ 58-62 (lines=5) @@ | ||
| 55 | ||
| 56 | <?php endif; ?> |
|
| 57 | ||
| 58 | <?php foreach ( $checkout->checkout_fields['order'] as $key => $field ) : ?> |
|
| 59 | ||
| 60 | <?php woocommerce_form_field( $key, $field, $checkout->get_value( $key ) ); ?> |
|
| 61 | ||
| 62 | <?php endforeach; ?> |
|
| 63 | ||
| 64 | <?php endif; ?> |
|
| 65 | ||