# subscription/1.3.2/includes/Admin/views/subscription-customer.php

Subscriptions for WooCommerce with Stripe Recurring Payments, version 1.3.2. 29 lines.

- Page: https://pluginprobe.com/plugins/subscription/1.3.2/code/includes/Admin/views/subscription-customer.php
- Raw: https://pluginprobe.com/plugins/subscription/1.3.2/raw/includes/Admin/views/subscription-customer.php
- Modified: 2025-04-24T09:50:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/subscription/1.3.2/code/includes/Admin/views/subscription-customer.php#L10-L20`.

```php
<div style="overflow: auto;">
	<table class="booking-customer-details" style="width: 100%;">
		<tbody>
			<tr>
				<th>Name:</th>
				<td><?php echo wp_kses_post( $order->get_formatted_billing_full_name() ); ?></td>
			</tr>
			<tr>
				<th>Email:</th>
				<td><a href="mailto:<?php echo esc_html( $order->get_billing_email() ); ?>"><?php echo esc_html( $order->get_billing_email() ); ?></a></td>
			</tr>
			<tr>
				<th>Address:</th>
				<td><?php echo wp_kses_post( $order->get_formatted_billing_address() ); ?></td>
			</tr>
			<?php if ( ! empty( $order->get_billing_phone() ) ) : ?>
			<tr>
				<th>Phone:</th>
				<td><?php echo esc_html( $order->get_billing_phone() ); ?></td>
			</tr>
			<?php endif; ?>
			<tr class="view">
				<th>&nbsp;</th>
				<td><a class="button button-small" target="_blank" href="<?php echo esc_html( $order->get_edit_order_url() ); ?>">View Order</a></td>
			</tr>
		</tbody>
	</table>
</div>

```
