Title: Remove default WordPress author box
Last modified: August 20, 2016

---

# Remove default WordPress author box

 *  [IngmarVerheij](https://wordpress.org/support/users/ingmarverheij/)
 * (@ingmarverheij)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/)
 * You can easily remove the default author box from WordPress by adding the following
   CSS code (for instance via Appearance > Edit CSS):
 * .author-box {
    display: none; }
 * PS: Feature request to add this by default?
 * [http://wordpress.org/extend/plugins/wp-about-author/](http://wordpress.org/extend/plugins/wp-about-author/)

Viewing 15 replies - 1 through 15 (of 15 total)

 *  [truthislight](https://wordpress.org/support/users/truthislight/)
 * (@truthislight)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582755)
 * Thank you for sharing Ingmar. Wont that code always hide the author box? Is it
   possible to hide it if the description is not filled out?
 *  Thread Starter [IngmarVerheij](https://wordpress.org/support/users/ingmarverheij/)
 * (@ingmarverheij)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582766)
 * The code above will only hide the default WordPress author box, not the “WP About
   Author” box 😉
 * It is possible to hide the box when the description is not filled out, i’ve posted
   a solution 2 weeks ago: [http://wordpress.org/support/topic/hide-authors-withouth-description](http://wordpress.org/support/topic/hide-authors-withouth-description)
 *  [Chanettk](https://wordpress.org/support/users/chanettk/)
 * (@chanettk)
 * [13 years ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582876)
 * It didn’t help for me…
 * Argh!! I’m going insane in trying to completely hide that stu*** author box 🙂
 * I’ll go bald if I don’t find a solution QUICK xD
 *  [Rodrigo Ferreira](https://wordpress.org/support/users/rodrigo-ferreira/)
 * (@rodrigo-ferreira)
 * [13 years ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582878)
 * Don’t go bald yet, Chanettk. Try this one:
 * #entry-author-info {
    display: none; }
 *  [Chanettk](https://wordpress.org/support/users/chanettk/)
 * (@chanettk)
 * [13 years ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582879)
 * In which file should I write it – or is it in the custom CSS form field?
 *  [Chanettk](https://wordpress.org/support/users/chanettk/)
 * (@chanettk)
 * [13 years ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582880)
 * Tried pasting it into the “Edit CSS” section, but nothing happened 🙁
 * Any other ideas?
 * Link to blog: [http://michaelwith.com/blog/](http://michaelwith.com/blog/)
 *  [Rodrigo Ferreira](https://wordpress.org/support/users/rodrigo-ferreira/)
 * (@rodrigo-ferreira)
 * [13 years ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582881)
 * Hi Chanettk,
 * I’ve just visited your blog. You are using the theme called “Presswork”.
 * You have to visit Appearance > Editor > style.css
 * On this page, you have to look for #authorbox and insert the following text: **
   display: none;**
 * Or you can simply write the following lines at the end of this page (style.css):
 * #authorbox {
    display: none; }
 *  [Chanettk](https://wordpress.org/support/users/chanettk/)
 * (@chanettk)
 * [13 years ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582882)
 * Rodrigo Ferreira – I am sending you kisses! It FINALLY worked. I have been looking
   for a solutions for weeks…
 * THANKS!
 *  [jonnonorton](https://wordpress.org/support/users/jonnonorton/)
 * (@jonnonorton)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582890)
 * I’m having the exact same issue, but I am using the Admired theme. I tried all
   the solutions in this thread in both the custom CSS file of my theme as well 
   as the custom CSS area provided within my theme. No luck.
 * Rodrigo, would you mind taking a look at my blog and telling me what I’m doing
   wrong? blog.vestatrader.com (it will take forever to load, not sure why this 
   is happening either but it could be server side, my client is hosting with a 
   small company out of Denmark)
 * Any ideas? I have a great plugin that is showing my authors’ info already, so
   I just want to get that default area out of there.
 *  [Rodrigo Ferreira](https://wordpress.org/support/users/rodrigo-ferreira/)
 * (@rodrigo-ferreira)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582891)
 * Hello Jonnonorton,
 * Try to use the following code on the custom CSS area provided within your theme:
 * #author-info {
    display: none; }
 *  [jonnonorton](https://wordpress.org/support/users/jonnonorton/)
 * (@jonnonorton)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582892)
 * That worked perfectly Rodrigo. Thank you so much for helping me 🙂
 *  [Medievaldragon](https://wordpress.org/support/users/medievaldragon/)
 * (@medievaldragon)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582899)
 * I’m not a programmer or coder.
 * I added all the codes mentioned in this page in the:
 * Appearance –> Editor –> User.css
 * None of these codes worked for me on the Arras Theme 1.5.3
 * I’m a “observe. Trial and Error. Repeat” type of guy to counter the lack of coding
   knowledge.
 * ATTENTION
 * I will provide here two scenarios.
 * **Scenario # 1:**
 * In my case, I have the “Custom About Author” plugin installed. This caused me
   to have TWO About author blocks displayed. The custom one, and the default one.
   Annoying, I know.
 * My fix was this:
 * In your Dashboard menu go to Appearance –> Editor –> Single Post (single.php)
 * In the Single Post editor find the following text:
 * >  <?php
   >  if ( arras_get_option(‘display_author’) ) { arras_post_aboutauthor();}?
   > >
 * Once you locate that piece of code, add the following tags:
 * >  <!– <?php
   >  if ( arras_get_option(‘display_author’) ) { arras_post_aboutauthor();}?
   > > –>
 * This will make the “About Author” box invisible. If you wish to restore it simply
   remove the tags.
 * > <!– –>
 * **Scenario # 2**
 * There is a very easy way to remove your About Author. Simply go to the admin 
   dashboard.
 * On the top-right corner you will see “Howdy, Your-username”. Click it and choose
   the “Edit my profile” option.
 * At the bottom of the page checkmark this option:
 * “Disable about author display (Check this box to not have author’s profile displayed
   at bottom of each post.)”
 *  [jonnonorton](https://wordpress.org/support/users/jonnonorton/)
 * (@jonnonorton)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582900)
 * Medievaldragon, you need to put a lot of this code into places other than the
   user.css file. That’s probably why they didn’t work for you.
 * For example, the fix that worked for me required me to enter the code into the
   Custom CSS area of my theme. I didn’t need to use the edit theme area at all,
   which is where the files you’re talking about are stored.
 * Try making sure you use the fixes in the correct area of your WP site and you
   may have better luck with the solutions provided on this page. I know I was having
   the exact same problem you described and it was fixed with Rodrigo’s last post.
   Your theme is different than the one I’m working on with this client, but it 
   may be worth trying it the way it was described to see if it works for you.
 *  [jonnonorton](https://wordpress.org/support/users/jonnonorton/)
 * (@jonnonorton)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582901)
 * Also, the box you are talking about in your solution #2 is actually a box that
   is provided by the third party plugin you installed to feature your authors. 
   I don’t think that’s a default wordpress feature. When I checked that box it 
   turned off my new author boxes which I actually wanted to view. As info
 *  [AAPS News Editor](https://wordpress.org/support/users/aaps-news-editor/)
 * (@aaps-news-editor)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582913)
 * Hi I could really use some help. I have the same problem with author boxes showing
   up and I can’t get rid of them! For example: [http://news.a2schools.org/videos-slideshows/](http://news.a2schools.org/videos-slideshows/)
 * I’ve tried some of the suggestions I’ve seen above, and the theme developers (
   MH Magazine Premium) don’t know how to fix it.
 * Please help!

Viewing 15 replies - 1 through 15 (of 15 total)

The topic ‘Remove default WordPress author box’ is closed to new replies.

 * ![](https://ps.w.org/wp-about-author/assets/icon-256x256.png?rev=3298335)
 * [WP About Author](https://wordpress.org/plugins/wp-about-author/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-about-author/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-about-author/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-about-author/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-about-author/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-about-author/reviews/)

 * 15 replies
 * 7 participants
 * Last reply from: [AAPS News Editor](https://wordpress.org/support/users/aaps-news-editor/)
 * Last activity: [12 years, 10 months ago](https://wordpress.org/support/topic/remove-default-wordpress-author-box/#post-3582913)
 * Status: not a support question