PluginProbe
Subscriptions for WooCommerce with Stripe Recurring Payments / 1.3.1
Subscriptions for WooCommerce with Stripe Recurring Payments v1.3.1
2.0.0 1.11.2 1.11.1 1.11.0 1.10.9 1.10.8 1.10.7 1.10.6 1.10.5 1.10.4 1.10.3 1.10.2 1.10.1 1.10.0 1.9.6 1.9.5 trunk 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 All 61 releases
subscription / includes / Admin / views / subscription-customer.php

subscription-customer.php in Subscriptions for WooCommerce with Stripe Recurring Payments 1.3.1, at includes/Admin/views/subscription-customer.php

29 lines 929 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div style="overflow: auto;">
2 <table class="booking-customer-details" style="width: 100%;">
3 <tbody>
4 <tr>
5 <th>Name:</th>
6 <td><?php echo wp_kses_post( $order->get_formatted_billing_full_name() ); ?></td>
7 </tr>
8 <tr>
9 <th>Email:</th>
10 <td><a href="mailto:<?php echo esc_html( $order->get_billing_email() ); ?>"><?php echo esc_html( $order->get_billing_email() ); ?></a></td>
11 </tr>
12 <tr>
13 <th>Address:</th>
14 <td><?php echo wp_kses_post( $order->get_formatted_billing_address() ); ?></td>
15 </tr>
16 <?php if ( ! empty( $order->get_billing_phone() ) ) : ?>
17 <tr>
18 <th>Phone:</th>
19 <td><?php echo esc_html( $order->get_billing_phone() ); ?></td>
20 </tr>
21 <?php endif; ?>
22 <tr class="view">
23 <th>&nbsp;</th>
24 <td><a class="button button-small" 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