I´m adding extra fields in Joomla articles, and I want to not show that new fields (and "li") if there are empty:
From this
<ul>
<li>
<?php echo $this->item->direccion; ?>
<a href="<?php echo $this->item->urlMap; ?>" target="<?php echo $this->item->targetMap; ?>">Mapa</a>
</li>
</ul>
To something like this:
<ul>
<li "if MOLA is empty not show this li">
<?php echo $this->item->MOLA; ?>
<a href="<?php echo $this->item->urlMap; ?>" target="<?php echo $this->item->targetMap; ?>">Map</a>
</li>
</ul>