View Full Version : Need Remove Required Field Message
solarisibot
05-13-2012, 03:25 PM
Good evening, I need to disable my users not able to edit the email option on the Edit Email & Password, I managed to hide the email field, but when I finish the exchange of password the following message appears:
vBulletin Message
Please complete the required field "Email".
How can I remove this so that I can change the password without this problem?
The problem is that if the submitted email doesn't match the user's current email, it tries to reset the email field. If you removed the email input fields completely then it's trying to set a blank email, which causes that message.
You could solve it by changing the email and emailconfirm fields to hidden fields instead of deleting them, but it might be better to create a plugin to stop email changes (because just removing or hiding the fields might not stop someone from changing their email if they know that's all you did). The plugin would use hook profile_updatepassword_start and have code like this:
$vbulletin->GPC['email'] = $vbulletin->userinfo['email'];
$vbulletin->GPC['emailconfirm'] = $vbulletin->userinfo['email'];
ReddeR
01-11-2015, 09:52 AM
Have this error too.
How fix it ? And how i can add this hook ?
$vbulletin->GPC['email'] = $vbulletin->userinfo['email'];
$vbulletin->GPC['emailconfirm'] = $vbulletin->userinfo['email'];
ozzy47
01-11-2015, 11:03 AM
Download the attached to your computer.
Go to, ACP --> Plugins & Products --> Download / Upload Plugins scroll to the bottom, and find this block, Import Plugin Definitions XML File and click on Browse, and find the file on your computer.
This will not show the error, as well as remove the fields from the template.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.