in the file SITOcomponentscom_realestatemanagerrealestatemanager.php
i found the part of the code used for LotSize and i removed the Whole if istance
Code: |
if (isset($_REQUEST['Lot_size']) && $_REQUEST['Lot_size'] = "on") {
$Lot_size = " ";
if ($is_add_or)
$Lot_size = " or ";
$is_add_or = true;
$Lot_size .=" LOWER(b.lot_size) LIKE '$exactly' ";
}
|
and i removed $Lot_size from here
Code: |
$poisk_search = $session->get("poisk", "");
$where = array();
$Houseid = " ";
$Description = " ";
$Title = " ";
$Address = " ";
$Country = " ";
$Region = " ";
$City = " ";
$District = " ";
$Zipcode = " ";
$Extra1 = " ";
$Extra2 = " ";
$Extra3 = " ";
$Extra4 = " ";
$Extra5 = " ";
$Extra6 = " ";
$Extra7 = " ";
$Extra8 = " ";
$Extra9 = " ";
$Extra10 = " ";
$Bathrooms = " ";
$Bedrooms = " ";
$Broker = " ";
$Contacts = " ";
$Agent = " ";
$Area = " ";
$Feature = " ";
$HOA_dues = " ";
$Lot_size = " ";
$Model = " ";
$School = " ";
$School_district = " ";
$Rent = " ";
$RentSQL = " ";
$RentSQL_JOIN_1 = " ";
$RentSQL_JOIN_2 = " ";
$RentSQL_rent_until = " ";
|
and here too
Code: |
$RentSQL = $RentSQL . (($is_add_or) ? ( "( ( " . $Houseid . " " . $Description . " " . $Title . " " . $Address .
" " . $Country . " " . $Region . " " . $City . " " . $District . " " . $Zipcode . " " . $Extra1 .
" " . $Extra2 . " " . $Extra3 . " " . $Extra4 . " " . $Extra5 . " " . $Bathrooms . " " . $Bedrooms . " " . $Broker .
" " . $Contacts . " " . $Agent . " " . $Area . " " . $Feature . " " . $HOA_dues . " " . $Lot_size .
" " . $Model . " " . $School . " " . $School_district . " ))") : (" "));
|