I would like to remove or hide the Biography input field from the profile page. How do you do this? I already removed some contact methods from this page, but I’m not sure how to get rid of the biography.
Leave a Reply
You must be logged in to post a comment.
There is no dedicated hook â user management is a low priority in WordPress. You have to use output buffering (yes, not nice).
Here is a simple demonstration how this could be done:
You can download the code as a standalone plugin: Plugin Remove Bio Box.
The password fields are now under Contact Info ⦠if you donât like that, add a headline in
stop()
â and take care for I18n. 😉The simplest and most lightweight solution is to use CSS to just hide it from view.
Since the recent class change this works:
Building on the previous answers, here is what I’m using to remove the parts of the User page I don’t want:
It’s still reliant on the structure of the HTML, but it works for me.
If you add the below code to your functions.php file, it will remove the bio section for all languages of a multi-language site: