|
@@ 957-965 (lines=9) @@
|
| 954 |
|
$address_fields[] = wpinv_country_name( $billing_country ); |
| 955 |
|
} |
| 956 |
|
|
| 957 |
|
if ( !empty( $address_fields ) ) { |
| 958 |
|
$address_fields = implode( ", ", $address_fields ); |
| 959 |
|
|
| 960 |
|
if ( !empty( $billing_details['zip'] ) ) { |
| 961 |
|
$address_fields .= ' ' . $billing_details['zip']; |
| 962 |
|
} |
| 963 |
|
|
| 964 |
|
$address_row .= wpautop( wp_kses_post( $address_fields ) ); |
| 965 |
|
} |
| 966 |
|
|
| 967 |
|
if ( $address_row ) { |
| 968 |
|
$output .= '<div class="address">' . $address_row . '</div>'; |
|
@@ 1829-1837 (lines=9) @@
|
| 1826 |
|
$address_fields[] = wpinv_country_name( $billing_country ); |
| 1827 |
|
} |
| 1828 |
|
|
| 1829 |
|
if ( !empty( $address_fields ) ) { |
| 1830 |
|
$address_fields = implode( ", ", $address_fields ); |
| 1831 |
|
|
| 1832 |
|
if ( !empty( $billing_details['zip'] ) ) { |
| 1833 |
|
$address_fields .= ' ' . $billing_details['zip']; |
| 1834 |
|
} |
| 1835 |
|
|
| 1836 |
|
$address_row .= wpautop( wp_kses_post( $address_fields ) ); |
| 1837 |
|
} |
| 1838 |
|
ob_start(); |
| 1839 |
|
?> |
| 1840 |
|
<table class="table table-bordered table-sm wpi-billing-details"> |