Hi,
Can you try adding the code:
if(!isset($product->characteristics[$characteristic->characteristic_parent_id])) {
$product->characteristics[$characteristic->characteristic_parent_id] = new stdClass();
$product->characteristics[$characteristic->characteristic_parent_id]->values = array();
}
before the line:
$product->characteristics[$characteristic->characteristic_parent_id]->values[$characteristic->characteristic_id] = $characteristic;
in the file administrator/components/com_hikashop/classes/cart.php ?
It should hopefully fix the problem.