Hi,
You have to edit the view "checkout | registration_bootstrap" like Xavier explained.
You would see a block starting by
<?php if($this->config->get('show_email_confirmation_field',0)){ ?>
You have to replace the block by this one :
<?php if($this->config->get('show_email_confirmation_field',0)){ ?>
<div class="control-group hikashop_registration_email_confirm_line">
<div class="control-label">
<label id="email_confirm_msg" for="register_email_confirm" class="required" title=""><?php echo JText::_( 'HIKA_EMAIL_CONFIRM' ); ?></label>
</div>
<div class="controls">
<input type="text" name="data[register][email_confirm]" id="register_email_confirm" value="<?php echo $this->escape($this->mainUser->get( 'email' ));?>" class="required validate-email" maxlength="100" size="30" aria-required="true" required="required" onchange="if(this.value!=document.getElementById('register_email').value){alert('<?php echo JText::_('THE_CONFIRMATION_EMAIL_DIFFERS_FROM_THE_EMAIL_YOUR_ENTERED',true); ?>'); this.value = '';}">
</div>
</div>
<?php
}
Just before there is the "register email" part which have the name "data[register]" and the confirmation email should be called "data[register][email_confirm]".
Regards,[email]" and the confirmation email should be called "data[register][email_confirm]".
Regards,