Hello
First of all In Real Estate manager(
ordasoft.com/Real-Estate-Manager-Software-Joomla.html) - you may add object to map, if you do click on map. You need select your location and click on map.
We special hide "Latitude" and "Longitude" from end users, very less who may correctly add this.
But you may show this in your "house edit form"
Please in file
{your site}/administrator/components/com_realestatemanager/realestatemanager.html.php
Find code:
Code: |
<input class="inputbox" type="text"
id="hlatitude" style="display:none" name="hlatitude"
size="20" value="<?php echo $row->hlatitude; ?>" readonly/>
|
and replace to
Code: |
<input class="inputbox" type="text"
id="hlatitude" name="hlatitude"
size="20" value="<?php echo $row->hlatitude; ?>" />
|
Find code:
Code: |
<input class="inputbox" type="text" id="hlongitude"
style="display:none" name="hlongitude" size="20"
value="<?php echo $row->hlongitude; ?>" readonly/>
|
and replace to
Code: |
<input class="inputbox" type="text" id="hlongitude"
name="hlongitude" size="20"
value="<?php echo $row->hlongitude; ?>" />
|
Please backup this file first
Regards
OrdaSoft team