|
@@ 1894-1899 (lines=6) @@
|
| 1891 |
|
<th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th> |
| 1892 |
|
<td><?php echo $billing_details['email'] ;?></td> |
| 1893 |
|
</tr> |
| 1894 |
|
<?php if ( $billing_details['company'] ) { ?> |
| 1895 |
|
<tr class="wpi-receipt-company"> |
| 1896 |
|
<th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th> |
| 1897 |
|
<td><?php echo esc_html( $billing_details['company'] ) ;?></td> |
| 1898 |
|
</tr> |
| 1899 |
|
<?php } ?> |
| 1900 |
|
<tr class="wpi-receipt-address"> |
| 1901 |
|
<th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th> |
| 1902 |
|
<td><?php echo $address_row ;?></td> |
|
@@ 1904-1909 (lines=6) @@
|
| 1901 |
|
<th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th> |
| 1902 |
|
<td><?php echo $address_row ;?></td> |
| 1903 |
|
</tr> |
| 1904 |
|
<?php if ( $billing_details['phone'] ) { ?> |
| 1905 |
|
<tr class="wpi-receipt-phone"> |
| 1906 |
|
<th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th> |
| 1907 |
|
<td><?php echo esc_html( $billing_details['phone'] ) ;?></td> |
| 1908 |
|
</tr> |
| 1909 |
|
<?php } ?> |
| 1910 |
|
</tbody> |
| 1911 |
|
</table> |
| 1912 |
|
<?php |