|
@@ 1833-1838 (lines=6) @@
|
| 1830 |
|
<th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th> |
| 1831 |
|
<td><?php echo $billing_details['email'] ;?></td> |
| 1832 |
|
</tr> |
| 1833 |
|
<?php if ( $billing_details['company'] ) { ?> |
| 1834 |
|
<tr class="wpi-receipt-company"> |
| 1835 |
|
<th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th> |
| 1836 |
|
<td><?php echo esc_html( $billing_details['company'] ) ;?></td> |
| 1837 |
|
</tr> |
| 1838 |
|
<?php } ?> |
| 1839 |
|
<tr class="wpi-receipt-address"> |
| 1840 |
|
<th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th> |
| 1841 |
|
<td><?php echo $address_row ;?></td> |
|
@@ 1843-1848 (lines=6) @@
|
| 1840 |
|
<th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th> |
| 1841 |
|
<td><?php echo $address_row ;?></td> |
| 1842 |
|
</tr> |
| 1843 |
|
<?php if ( $billing_details['phone'] ) { ?> |
| 1844 |
|
<tr class="wpi-receipt-phone"> |
| 1845 |
|
<th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th> |
| 1846 |
|
<td><?php echo esc_html( $billing_details['phone'] ) ;?></td> |
| 1847 |
|
</tr> |
| 1848 |
|
<?php } ?> |
| 1849 |
|
</tbody> |
| 1850 |
|
</table> |
| 1851 |
|
<?php |