fixing text domain issue
This commit is contained in:
parent
17f33d77ab
commit
7d2b370080
|
@ -26,7 +26,7 @@ do_action( 'woocommerce_before_checkout_form', $checkout );
|
||||||
|
|
||||||
// If checkout registration is disabled and not logged in, the user cannot checkout.
|
// If checkout registration is disabled and not logged in, the user cannot checkout.
|
||||||
if ( ! $checkout->enable_signup && ! $checkout->enable_guest_checkout && ! is_user_logged_in() ) {
|
if ( ! $checkout->enable_signup && ! $checkout->enable_guest_checkout && ! is_user_logged_in() ) {
|
||||||
echo apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'woocommerce' ) );
|
echo apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'understrap' ) );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ if ( ! $checkout->enable_signup && ! $checkout->enable_guest_checkout && ! is_us
|
||||||
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<h3 id="order_review_heading"><?php _e( 'Your order', 'woocommerce' ); ?></h3>
|
<h3 id="order_review_heading"><?php _e( 'Your order', 'understrap' ); ?></h3>
|
||||||
|
|
||||||
<?php do_action( 'woocommerce_checkout_before_order_review' ); ?>
|
<?php do_action( 'woocommerce_checkout_before_order_review' ); ?>
|
||||||
|
|
||||||
|
|
Reference in New Issue