Hi
I want to disallow change username option In my site. I wanted to do it through jQuery:
oc-content/themes/veronika/user-profile.php
<script>
$("#element_id").attr('disabled','disabled');
</script>
But when saving user data after editing, I get a message. "all fields must be filled out". The username field gets the name from the database and the name can not be edited. Unfortunately, I can not save user profile data using this jQuery script.
Please help