Hi,
In the file vote / form you can change that line below if you want to change the "username" text :
<?php echo JText::_('HIKA_USERNAME'); ?>:
For example, you could replaced it by:
<?php echo JText::_('HIKA_NAME'); ?>* :
Regarding making the name required, there should already be a check for that with the code:
if(!$element->vote_pseudo){
$this->error = array('code' => '505011', 'message' => JText::_('HIKA_VOTE_PSEUDO_REQUIRED'));
return false;
}
of the file administrator/components/com_hikashop/classes/vote.php
However, maybe that could be improved.
Try changing that code to:
if(empty($element->vote_pseudo)){
$this->error = array('code' => '505011', 'message' => JText::_('HIKA_VOTE_PSEUDO_REQUIRED'));
return false;
}