OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?

Joomla Real Estate

Go to bottom Favoured: 0

Help from order by

defork (Visitor)
Posts: 0
graphgraph
User Offline
help from order by 7 Years, 3 Months ago
Karma: 0  
hello,
i need help with real estate manager. On the houses page all houses are ordered automatically by title and i would like it by date but i don't know how. I've got the free version of real estate manager. If somebody know how i can do ? thanks a lot.
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8356
graph
User Offline Click here to see the profile of this user
Re:help from order by 7 Years, 3 Months ago
Karma: 102  
Hello

You may do that

if in file
{your site}/components/com_realestatemanager/realestatemanager.php

in all places, the code
Code:

            $sort_arr = array();
            $sort_arr['order_field'] = 'htitle';
            $sort_arr['order_direction'] = 'asc';
            $item_session->set('rem_housesort', $sort_arr);



replace to code

Code:

            $sort_arr = array();
            $sort_arr['order_field'] = 'date';
            $sort_arr['order_direction'] = 'asc';
            $item_session->set('rem_housesort', $sort_arr);



Please backup file first

Regards
Andrew
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
Go to top
»