Hi,
Can you change the code:
if(empty($rates)) {
$errors['no_rates'] = JText::_('NO_SHIPPING_METHOD_FOUND');
$this->errors = $errors;
return $usable_methods;
}
$config =& hikashop_config();
if(!$config->get('force_shipping') && bccomp(@$order->weight, 0, 5) <= 0) {
return $usable_methods;
}
to:
$config =& hikashop_config();
if(!$config->get('force_shipping') && bccomp(@$order->weight, 0, 5) <= 0) {
return $usable_methods;
}
if(empty($rates)) {
$errors['no_rates'] = JText::_('NO_SHIPPING_METHOD_FOUND');
$this->errors = $errors;
return $usable_methods;
}
in the file administrator/components/com_hikashop/classes/shipping.php and try again please ?