Hello,
first of all I wanna thanks the developers for the great component!!!
I have a question:
when registering new user I don't need both 'Username' and 'Name' fields, i need only 'Username'.
can I just edit the registration.php file and delete the lines:
<tr class="hikashop_registration_name_line">
<td class="key">
<label id="namemsg" for="register_name">
<?php echo JText::_( 'HIKA_USER_NAME' ); ?>
</label>
</td>
<td>
<input type="text" name="data[register][name]" id="register_name" value="<?php echo $this->escape($this->mainUser->get( 'name' ));?>" class="inputbox required" maxlength="50" /> *
</td>
</tr>
I'm afraid that it can cause the security, won't it?