Merge pull request #24786 from itzmekhokan/add/24779
Added phone numbers clickable in emails
This commit is contained in:
commit
b95c7f8359
|
@ -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