Updating from Joomla 3.6.5 to 3.7.3
Showing the address like before
Not showing the address
The problem is a result of a bad check at line 18/19 of /components/com_contact/views/contact/tmpl/default_address.php what isn't returning a result so the if is always negative.
params->get('address_check') > 0**) && ($this->contact->address || $this->contact->suburb || $this->contact->state || $this->contact->country || $this->contact->postcode)) : ?>This is solving the issue.
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-07-14 11:52:36 |
Closed_By | ⇒ | zero-24 |
Please, try to replace the line 335 in /components/com_contact/views/contact/view.html.php from
$this->params = &$params;
to
$this->params = &$item->params;