Может кому нужно будет...
В файле: catalog/controller/checkout/uni_checkout.php
foreach ($totals as $total) {
$key = $total['code'] == 'tax' ? $total['code'].'_'.$i++ : $total['code'];
$data['totals'][$key] = array(
'title' => $total['title'],
'text' => $this->currency->format($total['value'], $this->session->data['currency']),
'code' => $total['code']
);
}
Поменяйте на:
foreach ($totals as $total) {
$data['totals'][] = array(
'title' => $total['title'],
'text' => $this->currency->format($total['value'], $this->session->data['currency'])
);
}