It is not difficult. It is necessary to go to the file Joomla/components/com_realestatemanager/realestatemanager.html.php
We have to change the code in line. I have it 173-176, you may differ slightly.
This code
Code: |
<div class="row_add_house">
<span><?php echo _REALESTATE_MANAGER_LABEL_COUNTRY;?>:</span>
<input class="inputbox" type="text" id="hcountry" name="hcountry" size="30" value="<?php echo $row->hcountry;?>" />
</div>
|
change in the
Code: |
<div class="row_add_house" style="display: none;">
<span><?php echo _REALESTATE_MANAGER_LABEL_COUNTRY;?>:</span>
<input class="inputbox" type="text" id="hcountry" name="hcountry" size="30" value="<?php echo $row->hcountry;?>" />
</div>
|