This function removes fields on the Profile page (user Profile) of the WordPress dashboard. It shows you how to remove fields in the Personal Options section, Name section, Contact Info section, and About Yourself section.
Here is a list of which field of the user Profile each line removes. If you donât want to remove one of those fields, then you can erase that corresponding line in the code, or just comment it out by adding two slashes at the beginning of that line in the code, like this: //
.
This code will add some JavaScript to the head of your WordPress admin, not on the front of your site. This code uses jQuery. To use this code, you would add it to your functions.
Last tested on WordPress version 4.9-alpha-41690.
What each line in the code removes:
Line 4 will remove the âPersonal Optionsâ title.
Line 6 will remove the âVisual Editorâ field in the âPersonal Optionsâ section.
Line 8 will remove the âAdmin Color Schemeâ field in the âPersonal Optionsâ section.
Line 10 will remove the âKeyboard Shortcutsâ field in the âPersonal Optionsâ section.
Line 12 will remove the âToolbarâ field in the âPersonal Optionsâ section.
Line 14 will remove the âLanguageâ field in the âPersonal Optionsâ section.
Line 16 will remove the âFirst Nameâ field in the Name section.
Line 18 will remove the âLast Nameâ field.
Line 20 will hide the âNicknameâ field. (This is hidden rather than removed because the nickname is a required field.
Line 22 will remove the âDisplay name publicly asâ field.
Line 24 will remove the âWebsiteâ field in the âContact Infoâ section.
Line 26 will remove the âAbout Yourselfâ title (when viewing your own profile), and the âAbout the userâ title (when viewing someone elseâs profile).
Line 28 will remove the âBiographical Infoâ field in the âAbout Yourselfâ section.
Line 30 will remove the âProfile Pictureâ field in the âAbout Yourselfâ section.
Line 32 will remove the âAIMâ field in the âContact Infoâ section.
Line 34 will remove the âYahoo IMâ field in the âContact Infoâ section.
Line 36 will remove the âJabber / Google Talkâ field in the âContact Infoâ section.
Line 38 will remove the âNameâ heading.
Line 40 will remove the âContact Infoâ heading.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | function remove_personal_options(){ echo '<script type= "text/javascript" >jQuery(document).ready( function ($) { $(\'form#your-profile > h2:first\').remove(); // remove the "Personal Options" title $(\'form#your-profile tr.user-rich-editing-wrap\').remove(); // remove the "Visual Editor" field $(\'form#your-profile tr.user-admin-color-wrap\').remove(); // remove the "Admin Color Scheme" field $(\'form#your-profile tr.user-comment-shortcuts-wrap\').remove(); // remove the "Keyboard Shortcuts" field $(\'form#your-profile tr.user-admin-bar-front-wrap\').remove(); // remove the "Toolbar" field $(\'form#your-profile tr.user-language-wrap\').remove(); // remove the "Language" field $(\'form#your-profile tr.user-first-name-wrap\').remove(); // remove the "First Name" field $(\'form#your-profile tr.user-last-name-wrap\').remove(); // remove the "Last Name" field $(\'form#your-profile tr.user-nickname-wrap\').hide(); // Hide the "nickname" field $(\'table.form-table tr.user-display-name-wrap\').remove(); // remove the âDisplay name publicly asâ field $(\'table.form-table tr.user-url-wrap\').remove(); // remove the "Website" field in the "Contact Info" section $(\'h2:contains( "About Yourself" ), h2:contains( "About the user" )\').remove(); // remove the "About Yourself" and "About the user" titles $(\'form#your-profile tr.user-description-wrap\').remove(); // remove the "Biographical Info" field $(\'form#your-profile tr.user-profile-picture\').remove(); // remove the "Profile Picture" field $(\'table.form-table tr.user-aim-wrap\').remove(); // remove the "AIM" field in the "Contact Info" section $(\'table.form-table tr.user-yim-wrap\').remove(); // remove the "Yahoo IM" field in the "Contact Info" section $(\'table.form-table tr.user-jabber-wrap\').remove(); // remove the "Jabber / Google Talk" field in the "Contact Info" section $(\'h2:contains( "Name" )\').remove(); // remove the "Name" heading $(\'h2:contains( "Contact Info" )\').remove(); // remove the "Contact Info" heading });</script>'; } add_action( 'admin_head' , 'remove_personal_options' ); |
shae
April 12th, 2013 at 10:14 am
Thanks for the code. How would you replace the text âAbout Yourselfâ with something differnet?
Isabel
April 12th, 2013 at 10:42 pm
Your welcome. Try this
function
change_about_us(){
echo
"\n"
. '<script type=
"text/javascript"
>jQuery(document).ready(
function
($) {
$(\'form#your-profile > h3:eq(3)\').replaceWith(\'<h3>Your Custom Text Here</h3>\');
}); </script>' .
"\n"
; }
add_action(
'admin_head'
,
'change_about_us'
);
or, if youâre using the main function on this page, just add this single line into it. Insert it right after line 7.
$(\'form#your-profile > h3:eq(3)\').replaceWith(\'<h3>Your Custom Text Here</h3>\');
In either case, replace âYour Custom Text Hereâ with your own text. Hope this helps.
shae
April 14th, 2013 at 10:04 am
Thank You!!
Akki
October 27th, 2014 at 3:07 am
Hi
Can you remove specified filed â above â i my case i need website removed â for only non-admin users?
thanks
Isabel
October 27th, 2014 at 12:14 pm
To hide it only for non-admin users, use this instead:
function
hide_personal_options(){
if
( ! current_user_can(
'manage_options'
) ) {
echo
"\n"
. '<script type=
"text/javascript"
>jQuery(document).ready(
function
($) {
$(\'form#your-profile > h3:first\').hide();
$(\'form#your-profile > table:first\').hide();
$(\'table.form-table:eq(1) tr:eq(3)\').hide();
$(\'table.form-table:eq(1) tr:eq(4)\').hide();
$(\'table.form-table:eq(2) tr:eq(1)\').hide();
$(\
'form#your-profile\').show(); }); </script>'
.
"\n"
;
}
}
add_action(
'admin_head'
,
'hide_personal_options'
);
Akki
October 27th, 2014 at 12:32 pm
Thanks Ms Isabel , I Appreciate your help.
I used code before one you just posted , figured out how to add things i need to hide:P
Akki
October 27th, 2014 at 12:50 pm
If I may?:P
$(\âtable.form-table:eq(2) tr:eq(1)\â).hide();
i noticed (.hide ) â
Can i use something instead to disable this field form editing, but to leave visible perhaps?
Akki
October 27th, 2014 at 1:12 pm
OK got it, kind of i guess
$(\âtable.form-table:eq(2) tr:eq(1)\â).prop( âdisabledâ, true )();
But its not grayed outâŠ
Isabel
October 28th, 2014 at 10:27 am
This will do it. Line 1 makes the input field âRead Onlyâ, so it cannot be changed. Line 2 makes it gray.
jQuery(\'table.form-table:eq(2) tr:eq(1)\').keydown(
function
(){
return
false;});
$(\'table.form-table:eq(2) tr:eq(1) input\').css(\'color\',\'gray\');
Iâm assuming that you added a default value for the Website field with this:
$(\'table.form-table:eq(2) tr:eq(1) input\').attr(\'value\', \'YOUR WEBSITE VALUE\');
Hope that helps.
Akki
October 28th, 2014 at 11:03 am
Hi Isabel,
Yes very helpful đ
Couldnât do it without you!
This is the code im using now
function
hide_personal_options(){
if
( ! current_user_can(
'manage_options'
) ) {
echo
"\n"
. '<script type="text/javascript">jQuery(document).ready(
function
($) {
jQuery(\'table.form-table:eq(2) tr:eq(1)\').keydown(
function
(){
return
false;});
$(\'table.form-table:eq(2) tr:eq(1) input\').css(\'color\',\'gray\');
$(\'table.form-table:eq(2) tr:eq(1) input\').attr(\'value\', \'WG OPEN ID#\');
$(\
'form#your-profile\').show(); }); </script>'
. "\n";}
}
add_action(
'admin_head'
,
'hide_personal_options'
);
Fernando Lopes
February 22nd, 2017 at 11:59 am
Perfect your code Works perfectly.
How could I be hiding âAbout Yourself, Biographical Info and Profile Pictureâ?
Thank you.
Isabel
February 25th, 2017 at 5:42 pm
Thank you. I just updated this to hide those sections.
Jacob
April 28th, 2017 at 3:42 am
Hi Isabel,
Great post!
F.Y.I. The required ânicknameâ field cannot be removed because on update, if you donât send that (or any other essential field) to the WP update hook, then it sets empty values to those fields and produces an error.
Also, any idea how I can remove the entire âProofreadingâ section?
What about the âAbout Yourselfâ / âAbout the userâ titles.
Thanks
Isabel
May 7th, 2017 at 4:40 pm
Thank you. I just updated this to hide, rather than remove, the nickname field in order to avoid the error. I also fixed the code to properly remove the âAbout Yourselfâ and âAbout the userâ titles. Thanks for catching that.
âProofreadingâ section? I donât see that. Is that section added by a plugin?
Han
May 2nd, 2017 at 10:58 am
Thanks a lot Isabel. Works like a charm
Paul
June 15th, 2017 at 12:07 am
When I copy and paste this code into my functions.php file in the child theme it is not working for some reason it is getting errors. I think because the javascript isnât commented out properly???
Isabel
June 17th, 2017 at 6:12 pm
Did you modify the code? What part did you comment out? If you paste the exact code you used, I can check it out.
Marijn
June 22nd, 2017 at 9:01 am
Thanks so much for this code!
How would you remove the google+ field from contact info?
Isabel
June 22nd, 2017 at 2:15 pm
By default, WordPress doesnât have a Google+ field, but it does have a âJabber/Google Talkâ field. You can remove the ââ field by inserting this into line 31:
$(\'form#your-profile tr.user-jabber-wrap\').remove();
// remove the "Jabber/Google Talk" field
If you have a theme or plugin that is adding a custom Google+ field, youâll need to find out the CSS class selector that is given to that item in order to remove it.
0101 Design
July 15th, 2017 at 6:47 pm
Hi Isabel.
Thank you so much for your tutorial. I am wondering- do you know how to remove Facebook / AIM / Jabber / Yahoo IM / Google + / Twitter as well?
Thanks so much!
Also I want to do this for only non- admin users. I tried putting in
âŠ[code moderated]âŠ
But it came back as an error.
Isabel
October 3rd, 2017 at 12:39 pm
Youâre welcome. I just added the lines for removing AIM, Yahoo IM, and Jabber/Google Talk. However, Facebook, Google+, and Twitter are not added by WordPress so Iâm not sure how to remove it without seeing which plugin adds that.
From what I could see of your code, the function name was wrong. Try copying the code from above. To apply it only for non-admin users, insert this into the beginning of line 2 (push the current line 2 down to create a new blank line):
if
( current_user_can(
'manage_options'
) ) {
return
false;
}
Momses
July 24th, 2017 at 9:53 am
Hi, thanks for your hook. Iâm looking for the way to change on add user page and profile page the label âwebsiteâ with label âCountryâ by adding code on function.php.
Any idea?
Thanks again đ
Isabel
October 3rd, 2017 at 12:50 pm
This will work:
function
my_change_personal_options_website_label(){
echo
'<script type=
"text/javascript"
>jQuery(document).ready(
function
($) {
$(\'table.form-table tr.user-url-wrap label\').text(
"Country"
);
// change the "Website" label to "Country" in the "Contact Info" section
$(\'#createuser .form-table label[
for
=
"url"
]\').text(
"Country"
);
// change the "Website" label to "Country" on the Add New User page
});</script>';
}
add_action(
'admin_head'
,
'my_change_personal_options_website_label'
);
Rafael Rodrigues
October 2nd, 2017 at 10:54 am
Thank you lady! This is just what I was looking for and it worked without any need of plugins. Awesome!
Peninah
November 20th, 2017 at 4:08 am
Thank you!! This worked beautifully.
JRod
January 22nd, 2018 at 1:34 am
Wow, this is amazingly helpful! Thank YOU SO much!!!
I was searching and trying to figure all this out, and I came across your tutorial.
I would like to ask, I am trying to learn how to develop for WordPress. I often reference the codex, but stuff like this is not as easy to find. What might you suggest that I learn in order to become more proficient in figuring out solutions like the one you posted above?
Thanks in advance for this blog and for your help!
Sjors
March 5th, 2018 at 7:01 am
Hi Isabel,
Thank you for the code snippet! Would you be so kind to add some lines to hide the labels (headings 2): Name & Contact Info ?
With kind regards,
Sjors
Isabel
January 30th, 2020 at 3:55 pm
I added lines to remove the âNameâ heading and âContact Infoâ heading.
Quang
August 10th, 2018 at 12:46 am
Thank you đ
Alan
May 26th, 2020 at 11:50 pm
Nice code snippet, thanks. I found I had to also add this line:
$(\'form#your-profile tr.user-syntax-highlighting-wrap\').remove(); // remove the "Syntax Highlighting" field
I guess itâs a WP5 thing, but everything else working nicely.