Hello,
I succeed to reproduce your issue, the solution will be to edit the code of the "components\com_hikashop\views\checkout\view.html.php" file and change these lines :
foreach($shipping_groups as $key => $shipping_group) {
$p = reset($shipping_group->shippings);
foreach($usable_rates as $rate) {
if($rate->shipping_id == $p) {
$rates[] = $rate;
$shipping_id[] = $rate->shipping_id.'@'.$key;
$shipping_method[] = $rate->shipping_type.'@'.$key;
break;
}
}
}
To :
foreach($shipping_groups as $key => $shipping_group) {
foreach($usable_rates as $rate) {
if(in_array($rate->shipping_id, $shipping_group->shippings)) {
$rates[] = $rate;
$shipping_id[] = $rate->shipping_id.'@'.$key;
$shipping_method[] = $rate->shipping_type.'@'.$key;
break;
}
}
}
Be sure to clear your cache before testing it.