Hi Michael,
what mean "4.5 rooms" ?
We may propose to you order this as "customization service".
Please write to OrdaSoft contact form (
ordasoft.com/contact-us-form) with full details description, how all must look and work, and we will give to you quota.
I show only main steps
1. You need in database for field "rooms" change type: "int(11)" to "float"
2 in file {your site}/administrator/components/com_realestatemanager/realestatemanager.html.php
find code look like:
Code: |
} else if (
( <?php echo $realestatemanager_configuration['mandatory_rooms_field']; ?> == 1 ) && ( !isValidNumberInt(form.rooms.value) || form.rooms.value == '' || form.rooms.value == 0 )
|| ( <?php echo $realestatemanager_configuration['mandatory_rooms_field']; ?> == 0) && (!isValidNumberInt(form.rooms.value) )
){
|
and replace to
Code: |
} else if (
( <?php echo $realestatemanager_configuration['mandatory_rooms_field']; ?> == 1 ) && ( !isValidNumberFloat(form.rooms.value) || form.rooms.value == '' || form.rooms.value == 0 )
|| ( <?php echo $realestatemanager_configuration['mandatory_rooms_field']; ?> == 0) && (!isValidNumberFloat(form.rooms.value) )
){
|
Before any update please do files backup.
and search for rooms will work incorrectly
Regards
Andrew
Ordasoft team