Hello,
Regarding your ordering issue, can you edit the "administrator\components\com_hikashop\classes\shipping.php" file, and change these lines :
if(empty($usable_methods)) {
$errors['no_rates'] = JText::_('NO_SHIPPING_METHOD_FOUND');
$this->errors = $errors;
return $usable_methods;
}
By :
if(empty($usable_methods)) {
$errors['no_rates'] = JText::_('NO_SHIPPING_METHOD_FOUND');
$this->errors = $errors;
return $usable_methods;
}else{
foreach ($usable_methods as $key => $shipping_method) {
$shipping_ordering[$key] = $shipping_method -> shipping_ordering;
}
array_multisort($shipping_ordering, SORT_ASC, $usable_methods);
}