1. crlanier
  2. Features Request
  3. Wednesday, September 02 2015, 05:13 AM
Hi there, I had a few "can I" and "how to" questions.

Essentially I am assigning my users their password and usernames and I want to make sure they can't change them, how can I do this?

Also, is there a way an admin can be notified of changes that a user makes to their profile (so, address changes, etc.)

Thanks!
Accepted Answer
admin Accepted Answer
Admin
Hi,

Username & Password
Easy Profile extends Joomla user profile, so registration/edit profile pages are the same of Joomla (we use Joomla user plugin to customize these forms).

Joomla allow you to disable editing of username, you can configure this from Users->User Manager->Options

for password there are no ways to disable because this is a Joomla core field, you can consider to hide this with CSS.

Email notifications
This is not a feature, but you can do this by writing a simple plugin, try to read this topic: https://www.easy-profile.com/support/display-value-of-custom-fields-to-sent-emails.html
  1. more than a month ago
  2. Features Request
  3. # Permalink
crlanier Accepted Answer
Pro
Content Protected
  1. more than a month ago
  2. Features Request
  3. # 1
admin Accepted Answer
Admin
Hi,
for some reason autocomplete="off" is ignored into password HTML input by Firefox.

you can try to put autocomplete="off" on edit profile HTML form (https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion)

Edit profile form become from file /components/com_users/views/profile/tmpl/edit.php

This is a Joomla core file so we recommend you to override, so copy it into /templates/your-template-folder/html/com_users/profile/edit.php

I think Joomla need to add this, we will suggestion this modification at Joomla Dev Team.

Alternatives:
1. Javascript
2. System Plugin (this is most secure but very complex to develop)
  1. more than a month ago
  2. Features Request
  3. # 2
crlanier Accepted Answer
Pro
Okay, will the disabled attribute work maybe? If so where would I put it in edit.php?
  1. more than a month ago
  2. Features Request
  3. # 3
admin Accepted Answer
Admin
Hi,
at line 46 replace this:
<form id="member-profile"

with this:
<form autocomplete="off" id="member-profile"


I don't know if works in firefox, but you can try.
  1. more than a month ago
  2. Features Request
  3. # 4
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.
Sorry, the discussion is currently locked. You will not be able to post a reply at the moment.