Hi,
Please edit the file "component/com_hikashop/views/checkout/view.html.php" and replace:
$this->assignRef('additional',$cart->additional);
$this->assignRef('total',$cart->total);
$this->assignRef('rows',$cart->products);
$cart=hikashop_get('helper.cart');
$this->init();
By:
$this->assignRef('additional',$cart->additional);
$this->assignRef('total',$cart->total);
$this->assignRef('rows',$cart->products);
$cart=hikashop_get('helper.cart');
$this->assignRef('cart',$cart);
$this->init();
In the function cart.
It should fix your problem.
Regards,