Jump to content
  • 0

Stopping Users Changing Their Email Address


Question

4 answers to this question

Recommended Posts

  • 0
Posted

How can I stop users from changing their email address once they've signed up in Blesta?

 

 

Hello, :blesta:

 

the easy way is to put the field readonly, on the template.

 

Open the file with any code editor (Recomend: NotePad ++): 

 

/[your-blesta-dir]/app/views/client/bootstrap/client_main_edit.pdt

 

After the last line of that file add this code:

<script type="text/javascript">
	$(document).ready(function() {
        $("#email").prop('disabled', true);
    });
</script>

save the file and replace it :)

 

Hope that helps ;)

 

Regards,

PV

  • 0
Posted

There's also a history of these kinds of changes under Tools > Logs > Contacts, where you can see what information was changed whenever someone updates their information. In the future this will be displayed on a clients profile page for staff usage and provide the ability to roll back the information.

  • 0
Posted

This would make for a pretty good feature request - the ability to natively disallow email changes for the main contact or at least require them to re-accept the TOS or something.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...