Actually the contact form displays the field in an "american" style:
<city> <postal code>
I need it ordered in "european" style:
<postal code> <city>
How can I achieve this?
<?php if ($this->contact->suburb && $this->params->get('show_suburb')) : ?>
<span class="contact-suburb" itemprop="addressLocality"> <?php echo $this->contact->suburb; ?> </span>
<?php endif; ?>
<?php if ($this->contact->postcode && $this->params->get('show_postcode')) : ?>
<span class="contact-postcode" itemprop="postalCode"> <?php echo $this->contact->postcode; ?> </span>
<?php endif; ?>