Hi,
At the moment my search results come up and the "Order By" says "None", i would like to change this to "Latest Activity". Can anyone tell me how to do this?
Russell x
Hi, At the moment my search results come up and the "Order By" says "None", i would like to change this to "Latest Activity". Can anyone tell me how to do this? Russell x |
Anyone??? |
????????????? |
Evidently it is not by a simple setting in the backend or someone would have stated it by now. Geeks, making the world a better place |
Come on, it cant be that hard? |
Is this any help? http://www.boonex.com/forums/?action=goto&search=1#topic/Random-members-Online-.htm This is my signature, there are many like it but this one is mine... |
Thanks Richard but this is not what im looking for, i have attached a pic, if you look at the "order by" of the results once the search is complete the order by = none, you can adjust that to "Latest Activity" (pic 2) can you adjust it so they search results show up with the "Latest Activity" first? Many thanks Russell |
search.php line 106
$sSort = isset($_REQUEST['sort']) ? $_REQUEST['sort'] : 'none';
change it to:
$sSort = isset($_REQUEST['sort']) ? $_REQUEST['sort'] : 'activity';
Then around line 180 you have:
$aSortingParam = array ( 'none' => _t('_None'), 'activity' => _t('_Latest activity'), 'date_reg' => _t('_FieldCaption_DateReg_View'),
Change it to :
$aSortingParam = array ( 'activity' => _t('_Latest activity'), 'date_reg' => _t('_FieldCaption_DateReg_View'), 'none' => _t('_None'),
Then see what happens. I didn't test this so i don't know if it will work....
https://dolphin-techs.com - Skype: Dolphin Techs |
Hi there dolphin_jay, Made them changes and no change! still order by none! please see the attached pic! Russell |
How to change the word "rate" order by to "popularity"? If changed in langauge settings will that effect other sentences in the site? |
It may do, but it could improve things as well. if it screws things up, just change it back to Rate. I think it's this one. _Rate (System) |
How to change the word "rate" order by to "popularity"? If changed in langauge settings will that effect other sentences in the site? Any solution? |
How to change the word "rate" order by to "popularity"? If changed in langauge settings will that effect other sentences in the site? Any solution? Please reply.... boonex team! |