Hi,
Yes, that's normal. HTML is not allowed in custom field values.
Change the code:
$field->field_value[] = strip_tags($title) . '::' . strip_tags($value) . '::' . strip_tags($disabled);
to:
jimport('joomla.filter.filterinput');
$safeHtmlFilter = JFilterInput::getInstance(null, null, 1, 1);
$field->field_value[] = $safeHtmlFilter->clean($title,'string'). '::' . $safeHtmlFilter->clean($value,'string') . '::' . $safeHtmlFilter->clean($disabled,'string');
in the file administrator/components/com_hikashop/classes/field.php and that should allow HTML in values.