Hi,
On the searches of the Joomla search module ?
In that case, the order of the results depends on the order of the different plugins. And for the results of HikaShop it's either ordered based on the latest modification date, the creation date, the number of hits of the page, or alphabetically.
If you want to change the order of the product results in the search module of Joomla, you would have to change the code:
switch($ordering){
case 'alpha':
$order = 'a.product_name ASC';
break;
case 'newest':
$order = 'a.product_modified DESC';
break;
case 'oldest':
$order = 'a.product_created ASC';
break;
case 'popular':
$order = 'a.product_hit DESC';
break;
case 'category':
default:
$order = 'a.product_name DESC';
break;
}
in the file plugins/search/hikashop_products/hikashop_products.php