Note, it's just one user. Not multiple users.
Announcement
Collapse
No announcement yet.
Make Password Unalterable
Collapse
X
-
Sorry, there is no function to do this. This requires modifying the code. We cannot officially support code modifications or forums running modified code, however you can try searching or asking for help with this over at www.vbulletin.org.Steve Machol, former vBulletin Customer Support Manager (and NOT retired!)
Change CKEditor Colors to Match Style (for 4.1.4 and above)
Steve Machol Photography
Mankind is the only creature smart enough to know its own history, and dumb enough to ignore it.
Comment
-
Originally posted by Alastor View PostThankee, Steve.
It wouldn't fix it as such but it would make hard enough to deter a casual forum user from changing their password.
Comment
-
Originally posted by Cromulent View PostProbably the easiest way would be to wrap the change password areas of your template with a conditional that hides them from that one user.
It wouldn't fix it as such but it would make hard enough to deter a casual forum user from changing their password.
Comment
-
Originally posted by Alastor View PostBut that would apply to all users, no?
I believe you can also set conditionals to exclude just one userid if you like but that means if you ever want to exclude more than one user the list becomes quite long.
Comment
-
Originally posted by Cromulent View PostNope. Just set the conditional to exclude one usergroup and then add the users who you do not want to change their passwords to that usergroup.
I believe you can also set conditionals to exclude just one userid if you like but that means if you ever want to exclude more than one user the list becomes quite long.
Comment
-
Originally posted by Alastor View PostThankee, Steve.
My suggestion is to leave it as it is mate. Tell them that their password has to be something that they know and nobody else knows.Aussiefootyforums
New Site New forum
Come and talk sports all day long
Comment
-
Originally posted by schwab2clarkson View PostHmmm what happens if your members' accounts got hacked and they all had the same password?
I don't know, nor do I care, what the passwords of my users are. I want to make one account have a password I set and make it impossible for anyone to change it.
Comment
-
Use the following conditional:
Code:<if condition="$bbuserinfo['userid'] != x"> </if>
Now edit the USERCP_SHELL template and add the conditional around the following code:
Code:<tr><td class="$navclass[password]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editpassword">$vbphrase[edit_email_and_password]</a></td></tr>
Comment
-
the conditional code didn't seem to work for me. i edited the USERCP_SHELL template and inserted the code like so:
<if condition="$bbuserinfo['userid'] != bob">
<tr>
<td class="$navclass[password]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editpassword">$vbphrase[edit_email_and_password]</a></td>
</tr>
</if>
but when i go to login as userid bob, i'm still able to change the email and password. am i doing something wrong? many thanks in advance.
Comment
Related Topics
Collapse
-
by seachemI was prompted to reset my admin password today. I followed the link that says "Please change your password using this page." but before I can do anything it goes back to the previous page where...
-
Channel: Support Issues & Questions
Fri 28 Sep '18, 6:52am -
Comment