| 1 |
<div class="wp-subscription-admin-box wp-subscription-customer-info" style="box-shadow: none; padding-left: 0px;"> |
| 2 |
<table class="booking-customer-details" > |
| 3 |
<tbody> |
| 4 |
<tr> |
| 5 |
<td style="width:70px;">Name:</td> |
| 6 |
<td style="padding:6px 0;"><?php echo wp_kses_post( $order->get_formatted_billing_full_name() ); ?></td> |
| 7 |
</tr> |
| 8 |
<tr> |
| 9 |
<td>Email:</td> |
| 10 |
<td style=""><a href="mailto:<?php echo esc_html( $order->get_billing_email() ); ?>" style="color:#2271b1;text-decoration:none;"><?php echo esc_html( $order->get_billing_email() ); ?></a></td> |
| 11 |
</tr> |
| 12 |
<tr> |
| 13 |
<td>Address:</td> |
| 14 |
<td style=""><?php echo wp_kses_post( $order->get_formatted_billing_address() ); ?></td> |
| 15 |
</tr> |
| 16 |
<?php if ( ! empty( $order->get_billing_phone() ) ) : ?> |
| 17 |
<tr> |
| 18 |
<td>Phone:</td> |
| 19 |
<td style=""><?php echo esc_html( $order->get_billing_phone() ); ?></td> |
| 20 |
</tr> |
| 21 |
<?php endif; ?> |
| 22 |
<tr class="view"> |
| 23 |
<td> </th> |
| 24 |
<td style=""><a class="button" style="font-size:12px;padding:4px 14px;background:#f3f4f6;color:#444;border:none;border-radius:5px;box-shadow:none;" target="_blank" href="<?php echo esc_html( $order->get_edit_order_url() ); ?>">View Order</a></td> |
| 25 |
</tr> |
| 26 |
</tbody> |
| 27 |
</table> |
| 28 |
</div> |
| 29 |
|