Hi 2fast2hot
Your issues have been fixed. Please check again then tell me your idea. Here is the list of things I fixed for you:
- I change line code from 68 to 69 in folder components/com_jux_real_estate/views/agentrealties/tmpl/default_realtylist.php
<?php if($this->item->beds>0) : ?> <div class="bedrooms"><span><?php echo $this->item->beds; ?></span></div><?php endif;?>
<?php if($this->item->baths>0) : ?><div class="bathrooms"><span><?php echo $this->item->baths; ?></span></div><?php endif;?>
- I change line code from 162 to 177 in folder components/com_jux_real_estate/views/realty/tmpl/default.php
<?php if($this->item->beds>0) : ?>
<div class="jux-col-sm-12 jux-col-md-6 jux-col-lg-6">
<?php
echo JText::_('COM_JUX_REAL_ESTATE_BEDS') . ': ' . $this->item->beds;
?>
</div>
<?php endif; ?>
</div>
<div class="jux-row">
<?php if($this->item->baths>0) : ?>
<div class="jux-col-sm-12 jux-col-md-12 jux-col-lg-12">
<?php
echo JText::_('COM_JUX_REAL_ESTATE_BATHS') . ': ' . $this->item->baths;
?>
</div>
<?php endif; ?>
Best regards,
Falcao