| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template variables: |
| 4 |
* |
| 5 |
* @var $controllers array Widgets/Addons Settings |
| 6 |
* @var $checkout Object WC()->checkout() |
| 7 |
* @var $is_builder bool |
| 8 |
*/ |
| 9 |
|
| 10 |
// Do not allow directly accessing this file. |
| 11 |
if ( ! defined( 'ABSPATH' ) ) { |
| 12 |
exit( 'This script cannot be accessed directly.' ); |
| 13 |
} |
| 14 |
|
| 15 |
|
| 16 |
$has_shipping = true === WC()->cart->needs_shipping_address(); |
| 17 |
|
| 18 |
if ( $is_builder && ! $has_shipping ) { |
| 19 |
$info_msg = __( 'Maybe your cart is empty Or The shipping address needs to enable. Please enable it first from the woocommerce settings page.', 'shopbuilder' ); |
| 20 |
echo '<p>' . esc_html( $info_msg ) . '</p>'; |
| 21 |
} |
| 22 |
$wrapper_class = ! empty( $controllers['fields_width_100'] ) ? 'rtsb-form-fields-width-100' : ''; |
| 23 |
?> |
| 24 |
<?php if ( $has_shipping ) : ?> |
| 25 |
<div class="rtsb-form-shipping <?php echo esc_attr( $wrapper_class ); ?>"> |
| 26 |
<div class="woocommerce-shipping-fields"> |
| 27 |
<h3 id="ship-to-different-address"> |
| 28 |
<label class="woocommerce-form__label woocommerce-form__label-for-checkbox checkbox"> |
| 29 |
<input id="ship-to-different-address-checkbox" class="woocommerce-form__input woocommerce-form__input-checkbox input-checkbox" <?php checked( apply_filters( 'woocommerce_ship_to_different_address_checked', 'shipping' === get_option( 'woocommerce_ship_to_destination' ) ? 1 : 0 ), 1 ); ?> type="checkbox" name="ship_to_different_address" value="1" /> <span><?php esc_html_e( 'Ship to a different address?', 'shopbuilder' ); ?></span> |
| 30 |
</label> |
| 31 |
</h3> |
| 32 |
<div class="shipping_address"> |
| 33 |
|
| 34 |
<?php do_action( 'woocommerce_before_checkout_shipping_form', $checkout ); ?> |
| 35 |
|
| 36 |
<div class="woocommerce-shipping-fields__field-wrapper"> |
| 37 |
<?php |
| 38 |
$fields = $checkout->get_checkout_fields( 'shipping' ); |
| 39 |
|
| 40 |
foreach ( $fields as $key => $field ) { |
| 41 |
woocommerce_form_field( $key, $field, $checkout->get_value( $key ) ); |
| 42 |
} |
| 43 |
?> |
| 44 |
</div> |
| 45 |
|
| 46 |
<?php do_action( 'woocommerce_after_checkout_shipping_form', $checkout ); ?> |
| 47 |
|
| 48 |
</div> |
| 49 |
</div> |
| 50 |
</div> |
| 51 |
|
| 52 |
<?php do_action( 'woocommerce_checkout_after_customer_details' ); ?> |
| 53 |
|
| 54 |
<?php endif; ?> |
| 55 |
|