Hi,
That's a way of doing that, else you can edit the file "administrator/components/com_hikashop/classes/field.php" and replace:
function check(&$field,&$value,$oldvalue) {
if(is_string($value))
$value = trim($value);
if(($field->field_namekey == 'field_default' && $app->isAdmin()) || !$field->field_required || is_array($value) || strlen($value) || strlen($oldvalue))
return true;
if($this->report) {
$app = JFactory::getApplication();
$app->enqueueMessage(JText::sprintf('PLEASE_FILL_THE_FIELD',$this->trans($field->field_realname)),'error');
}
return false;
}
By:
function check(&$field,&$value,$oldvalue) {
if(is_string($value))
$value = trim($value);
$app = JFactory::getApplication();
if(($field->field_namekey == 'field_default' && $app->isAdmin()) || !$field->field_required || is_array($value) || strlen($value) || strlen($oldvalue))
return true;
if($this->report) {
$app->enqueueMessage(JText::sprintf('PLEASE_FILL_THE_FIELD',$this->trans($field->field_realname)),'error');
}
return false;
}
We will correct that issue.