Added fixed issue #24779
This commit is contained in:
parent
e007b2317a
commit
00dfa57e5a
|
@ -31,7 +31,7 @@ $shipping = $order->get_formatted_shipping_address();
|
|||
<address class="address">
|
||||
<?php echo wp_kses_post( $address ? $address : esc_html__( 'N/A', 'woocommerce' ) ); ?>
|
||||
<?php if ( $order->get_billing_phone() ) : ?>
|
||||
<br/><?php echo esc_html( $order->get_billing_phone() ); ?>
|
||||
<br/><?php echo wc_make_phone_clickable( $order->get_billing_phone() ); ?>
|
||||
<?php endif; ?>
|
||||
<?php if ( $order->get_billing_email() ) : ?>
|
||||
<br/><?php echo esc_html( $order->get_billing_email() ); ?>
|
||||
|
|
Loading…
Reference in New Issue