Hi,
Please replace in the file "components/com_hikashop/views/cart/tmpl/showcart.php", the block
<?php
echo $this->currencyHelper->format($this->total->prices[0]->price_value, $this->total->prices[0]->price_currency_id);
?>
By
<?php
if(empty($this->total->prices)) {
$this->total->prices[0] = new stdClass();
$this->total->prices[0]->price_value = 0;
$this->total->prices[0]->price_currency_id = hikashop_getCurrency();
}
echo $this->currencyHelper->format($this->total->prices[0]->price_value, $this->total->prices[0]->price_currency_id);
?>
Regards,