- Posts: 5
- Thank you received: 0
OS Property support center
Search module with package not the same as the dem
- Mike
- Topic Author
- Offline
- New Member
-
Less
More
10 years 3 months ago - 10 years 3 months ago #56805
by Mike
Search module with package not the same as the dem was created by Mike
Hello
I noticed my search module is not the same as the one thats being demoed .
Left search module on this page.
osproperty.ext4joomla.com/
Any thoughts on what Im missing to have this same module is greatly appreciated. Mine is basically lines of texts in a box rather then a sleek drop down on the above page.
Also I noticed theres a star rating on properties, but it looks like an image rather then an actual rating code. I could be wrong but asking, if this is a true rating/voting system?
Thanks again,
Cheers Mike
I noticed my search module is not the same as the one thats being demoed .
Left search module on this page.
osproperty.ext4joomla.com/
Any thoughts on what Im missing to have this same module is greatly appreciated. Mine is basically lines of texts in a box rather then a sleek drop down on the above page.
Also I noticed theres a star rating on properties, but it looks like an image rather then an actual rating code. I could be wrong but asking, if this is a true rating/voting system?
Thanks again,
Cheers Mike
Last edit: 10 years 3 months ago by Mike.
Please Log in or Create an account to join the conversation.
- Mr. Dam
-
- Offline
- Administrator
-
Less
More
- Posts: 13056
- Thank you received: 1696
10 years 3 months ago #56827
by Mr. Dam
Replied by Mr. Dam on topic Search module with package not the same as the dem
Hi Mike,
The search module on the demo site is mod_ospropertysearch. It is included in OS Property package. You can find it in folder "modules" of OS Property package. There aren't any difference between the search module on demo site and the module in the package.
Rating is one feature of OS Property, when user write the comment for property, they can rate for that property too. OS Property will calculate total rated points and devide for numner rating times -> Rating number.
Thanks
Dam
The search module on the demo site is mod_ospropertysearch. It is included in OS Property package. You can find it in folder "modules" of OS Property package. There aren't any difference between the search module on demo site and the module in the package.
Rating is one feature of OS Property, when user write the comment for property, they can rate for that property too. OS Property will calculate total rated points and devide for numner rating times -> Rating number.
Thanks
Dam
Please Log in or Create an account to join the conversation.
- Mike
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 5
- Thank you received: 0
10 years 3 months ago #56900
by Mike
Replied by Mike on topic Search module with package not the same as the dem
- Mr. Dam
-
- Offline
- Administrator
-
Less
More
- Posts: 13056
- Thank you received: 1696
10 years 3 months ago #56926
by Mr. Dam
Replied by Mr. Dam on topic Search module with package not the same as the dem
Hi,
The search module you have is correct. It is even newer than the search module in demo site. Because from OS Property 2.7.3, the category sing select dropdown list was changed to category multiple select.
Thanks
Dam
The search module you have is correct. It is even newer than the search module in demo site. Because from OS Property 2.7.3, the category sing select dropdown list was changed to category multiple select.
Thanks
Dam
Please Log in or Create an account to join the conversation.
- Mike
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 5
- Thank you received: 0
10 years 3 months ago #56952
by Mike
Replied by Mike on topic Search module with package not the same as the dem
So what do I have to do to get it like the demo?
Please Log in or Create an account to join the conversation.
- Mr. Dam
-
- Offline
- Administrator
-
Less
More
- Posts: 13056
- Thank you received: 1696
10 years 3 months ago #56953
by Mr. Dam
Replied by Mr. Dam on topic Search module with package not the same as the dem
Hi Mike,
As i told you, the search module on the demo site is old version. When one property can only be assigned to one category. If you are using newer version, you can't have it, because one property can be assigned to more than one category. So the drop down select list Category must be changed to multiple select list.
Thanks
Dam
As i told you, the search module on the demo site is old version. When one property can only be assigned to one category. If you are using newer version, you can't have it, because one property can be assigned to more than one category. So the drop down select list Category must be changed to multiple select list.
Thanks
Dam
Please Log in or Create an account to join the conversation.
- Mike
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 5
- Thank you received: 0
10 years 3 months ago #56963
by Mike
Replied by Mike on topic Search module with package not the same as the dem
possible at all to change the code to only change appearance? Not functionality? the only difference would be appearance only, instead of a list we get a drop down, everything else in the backend remains the same. Is this possible at all to only change the appearance?
Please Log in or Create an account to join the conversation.
- Mr. Dam
-
- Offline
- Administrator
-
Less
More
- Posts: 13056
- Thank you received: 1696
10 years 3 months ago #56965
by Mr. Dam
Replied by Mr. Dam on topic Search module with package not the same as the dem
Ok, you can change it by following bellow steps
1. Open file:
modules > mod_ospropertysearch > helper.php
2. find
$output = JHTML::_('select.genericlist', $parentArr, 'category_ids[]', 'style="min-height:100px;" class="input-medium" multiple '.$onChangeScript, 'value', 'text', $category_ids );
and replace by
$output = JHTML::_('select.genericlist', $parentArr, 'category_id', 'style="min-height:100px;" class="input-medium" '.$onChangeScript, 'value', 'text', $category_ids );
and file modules > mod_ospropertysearch > tmpl > default.php
find
modOspropertySearchHelper::listCategories(JRequest::getVar('category_ids',null,array()),'',$inputbox_width_site);
and change to
modOspropertySearchHelper::listCategories(JRequest::getInt('category_ids',''),'',$inputbox_width_site);
Good luck
Dam
1. Open file:
modules > mod_ospropertysearch > helper.php
2. find
$output = JHTML::_('select.genericlist', $parentArr, 'category_ids[]', 'style="min-height:100px;" class="input-medium" multiple '.$onChangeScript, 'value', 'text', $category_ids );
and replace by
$output = JHTML::_('select.genericlist', $parentArr, 'category_id', 'style="min-height:100px;" class="input-medium" '.$onChangeScript, 'value', 'text', $category_ids );
and file modules > mod_ospropertysearch > tmpl > default.php
find
modOspropertySearchHelper::listCategories(JRequest::getVar('category_ids',null,array()),'',$inputbox_width_site);
and change to
modOspropertySearchHelper::listCategories(JRequest::getInt('category_ids',''),'',$inputbox_width_site);
Good luck
Dam
Please Log in or Create an account to join the conversation.
- Dachi
- Offline
- New Member
-
Less
More
- Posts: 1
- Thank you received: 0
10 years 3 months ago #57047
by Dachi
Replied by Dachi on topic Search module with package not the same as the dem
Hello,
Which module is used in this template: osprealestate.joomservices.com/ the one that says "STOP LOOKING, START FINDING"?
Thank you
Which module is used in this template: osprealestate.joomservices.com/ the one that says "STOP LOOKING, START FINDING"?
Thank you
Please Log in or Create an account to join the conversation.
- Mr. Dam
-
- Offline
- Administrator
-
Less
More
- Posts: 13056
- Thank you received: 1696
10 years 3 months ago #57073
by Mr. Dam
Replied by Mr. Dam on topic Search module with package not the same as the dem
Hi Dachi,
The Quicksearch module was designed for OSP Real Estate only. It isn't included in OS Property extension package
Thanks
Dam
The Quicksearch module was designed for OSP Real Estate only. It isn't included in OS Property extension package
Thanks
Dam
Please Log in or Create an account to join the conversation.
Moderators: Mr. Dam, Nguyen Phu Quan
Support
Documentation
Information
Copyright © 2025 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.