1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php if ( ! defined( 'ABSPATH' ) ) { exit; }
use YayMail\Utils\Helpers;
if ( ! isset( $args['order'] ) || ! ( Helpers::is_woocommerce_order( $args['order'] ) ) ) { return; }
$order_instance = $args['order']; $shipping_address = $order_instance->get_formatted_shipping_address(); if ( ! wc_ship_to_billing_address_only() && $order_instance->needs_shipping_address() && ! empty( $shipping_address ) ) : $shipping_phone = $order_instance->get_shipping_phone(); ?> <address> <?php echo wp_kses_post( $shipping_address ); ?> <?php if ( ! empty( $shipping_phone ) ) : ?> <br/> <a href='tel:<?php echo esc_attr( $shipping_phone ); ?>' style="font-family: inherit"> <?php echo esc_html( $shipping_phone ); ?> </a> <?php endif; ?> </address> <?php endif;
|