如何锁定默认的电子邮件字段(使其为只读),以便用户在注册后无法更改其电子邮件地址
谢谢
可以通过在template.php中使用hook_form_alter()来实现,这里有一个详细的解决方案:http://drupal.org/node/1241204#comment-7057244
*下面的代码是由Isabug在前面的链接创建的:
/**
* Implements hook_form_alter().
*/
function mytheme_form_user_profile_form_alter(&$form, &$form_state, $form_id) {
global $user;
$roles = $user->roles;
if(in_array('administrator', $roles)) {
return;
}
$form['account']['mail']['#disabled'] = TRUE;
}
欢呼,
你可以使用jquery禁用email字段,
设置disabled属性
$("yourIdorClassforemailfield").attr('disabled','disabled');
再次启用
$("yourIdorClassforemailfield").removeAttr('disabled');