You’ll need to customize code in functions.php.
Make sure to take note of this, because being Supreme a child theme, after next update (which should be last) you will ahve to apply this again.
Open functions.php and change this:
$sd_address = '<div class="sd-address">';
if (isset($post->post_city) && $post->post_city) {
$sd_address .= $post->post_city;
}
if (isset($post->post_region) && $post->post_region) {
$sd_address .= ', ' . $post->post_region;
}
if (isset($post->post_country) && $post->post_country) {
$sd_address .= ', ' . $post->post_country;
}
$sd_address .= '</div>';
with :
$sd_address = '<div class="sd-address">';
if (isset($post->post_address) && $post->post_address) {
$sd_address .= $post->post_address;
}
$sd_address .= '</br>';
if (isset($post->post_city) && $post->post_city) {
$sd_address .= $post->post_city;
}
if (isset($post->post_region) && $post->post_region) {
$sd_address .= ', ' . $post->post_region;
}
if (isset($post->post_zip) && $post->post_zip) {
$sd_address .= ', ' . $post->post_zip;
}
if (isset($post->post_country) && $post->post_country) {
$sd_address .= ', ' . $post->post_country;
}$sd_address .= '</div>';
echo $sd_address;
Starts at line 749.
Thanks