If this is for the registration form then in the file user-reg-aide-registrationForm.php starting around line 72 is the beginning of the form fields. The php will go to html and look for the <label> tags. Following that will be a <?php _e(‘label name*:’, ‘csds_userRegAide’);?>
Here is one example:
<label><?php _e(‘Confirm Password*:’, ‘csds_userRegAide’);?>
Just change that to this and you are set to go, make sure not to delete the single quote though (‘)!
<label><?php _e(‘Confirm Password’, ‘csds_userRegAide’);?>
For those fields that come from your new fields the line of code will look like this:
<label><?php _e($regFields[$fieldKey].’*:’, ‘csds_userRegAide’) ?></label>
Change that to this:
<label><?php _e($regFields[$fieldKey], ‘csds_userRegAide’) ?></label>
Hope that helps you my friend.