OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Help with search Module in customized template (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 0

Help with search Module in customized template

osiris1975 (User)
Fresh Boarder
Posts: 17
graphgraph
User Offline Click here to see the profile of this user
Help with search Module in customized template 10 Years, 7 Months ago
Karma: 0  
Thank you for your support, I really enjoyed my customized template, but I would like to make some changes in the search module.

In searc by price - The price should start at 500000 to 7000000

Hide Category field

In Property type modify or hide some type like farm and ranch


Thank you.

www.remaininspain.com/index.php/es/
Logged Logged
Last Edit: 2013/08/29 12:20 By osiris1975. Reason: Link
The administrator has disabled public write access.
01system (User)
Senior Boarder
Posts: 47
graphgraph
User Offline Click here to see the profile of this user
Re:Help with search Module in customized template 10 Years, 7 Months ago
Karma: 0  
Hello support
we too have the same problem, expect an answer to continue with the work.

thanks
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:Help with search Module in customized template 10 Years, 7 Months ago
Karma: 101  
for set price set in real estate search mpodule - ypu need open file:
{site}/modules/mod_realestatemanager_search/tmpl/default.php

there are you need found rows

Code:

for($i=0; $i<=$max_price+10000; $i=$i+10000){
    $price[] = mosHTML :: makeOption($i, $i);
    $price_to[] = mosHTML :: makeOption($i, $i);
}



and replace to:
Code:

$max_price = 7000000;
for($i=500000; $i<=$max_price+100000; $i=$i+100000){
    $price[] = mosHTML :: makeOption($i, $i);
    $price_to[] = mosHTML :: makeOption($i, $i);
}



Please backup that file first

Thanks,
ordaSoft team
Logged Logged
The administrator has disabled public write access.
osiris1975 (User)
Fresh Boarder
Posts: 17
graphgraph
User Offline Click here to see the profile of this user
Re:Help with search Module in customized template 10 Years, 7 Months ago
Karma: 0  
Done, searching by price is working perfectly, but after making the code changes the word search field've stopped working, for exaple search by "banus" or "santa maria" does not show any results, thanks for your support.

is pending

Hide Category field in search module and

In Property type modify or hide some type like farm and ranch.

Thank you
Logged Logged
Last Edit: 2013/09/02 17:51 By osiris1975. Reason: Editing
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:Help with search Module in customized template 10 Years, 6 Months ago
Karma: 101  
Hello,

Price search change - must not change how Key Word search work. May be "banus" or "santa maria" have price less 500000 ?

Hide Category field in property search module
ony with help code edit, Please open file:
{site}/modules/mod_realestatemanager_search/tmpl/default.php

and remove in it rows:
<tr>
<td align="left" nowrap>
<?php echo _REALESTATE_MANAGER_LABEL_CATEGORY . ':&nbsp;'. $clist;?>&nbsp;
</td>
</tr>



In Property type modify or hide some type like farm and ranch.
You may change property type possible values with help Language manager

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
osiris1975 (User)
Fresh Boarder
Posts: 17
graphgraph
User Offline Click here to see the profile of this user
Re:Help with search Module in customized template 10 Years, 6 Months ago
Karma: 0  
Thank for your support, is done.

But the words search fields is not working with any word,

is necessary to combine keywords with a price? or can I search for example "Banus" the field empty price?

Please try any search, maybe I'm wrong.

www.remaininspain.com

Thanks
Logged Logged
The administrator has disabled public write access.
Go to top
»