Hi,
We didn't implement it as we didn't feel the need to so far. But it's not difficult to add.
Edit the file administrator/components/com_hikashop/classes/user.php and add the code:
// Check if the fields are correctly filled, if not, return
jimport('joomla.mail.helper');
if(empty($this->registerData->email) || (method_exists('JMailHelper', 'isEmailAddress') && !JMailHelper::isEmailAddress($this->registerData->email))){
$app->enqueueMessage(JText::_('EMAIL_INVALID'), 'error');
return false;
}
before the line:
if(empty($this->registerData->name)){
let us know how it goes so that we can add it by default.