Hi
You mean the field ‘Confirm email address’ in registration form, right?
You will have to hack in registration form of default ‘com_users’ a bit: root/components/com_users/models/forms/registration.xml
and comment / remove the ’email2′ field like this:
<!--
<field
name="email2"
type="email"
description="COM_USERS_REGISTER_EMAIL2_DESC"
field="email1"
filter="string"
label="COM_USERS_REGISTER_EMAIL2_LABEL"
message="COM_USERS_REGISTER_EMAIL2_MESSAGE"
required="false"
size="30"
validate="equals"
/>
-->
Then go to file: root/modules/mod_jalogin/tmpl/default.php
comment the same field:
<!--
<dt>
<label title="" class="required" for="jform_email2" id="jform_email2-lbl"><?php echo JText::_( 'JACONFIRM_EMAIL_ADDRESS'); ?>:</label>
<em> (*)</em>
</dt>
<dd><input type="text" size="30" class="validate-email required" value="" id="jform_email2" name="jform"></dd>
-->
Hope this helps.