How to Remove Howdy Admin in WordPress

Remove Howdy Admin In Wordpress

In many cases, people are unaware of how they can remove the Howdy Admin text from their admin panel bar. That’s why I’ll show you all the methods and the entire procedure on how to remove Howdy Admin in WordPress.

The topics which I’ll cover are:

  • What is “Howdy Admin”?
  • Why remove/change it?
  • How to remove Howdy Admin in WordPress?

Let’s start with what exactly is Howdy Admin?

What Is “Howdy Admin”?

Howdy Admin

Howdy Admin is a small text displayed in the top right corner of your WordPress website. Howdy is a form of greeting which is attached to the user name of the website owner. e.g., “Howdy, John” or “Howdy, Alex.”

It’s displayed whenever you login to your WordPress admin panel. It can be seen at the top of both the dashboard and your website. When you hover over it, you’ll be able to see a few settings for your WordPress profile.

Settings For The Admin Panel
Settings For The Admin Panel

Why Remove/Change It?

The overall removal of Howdy Admin text is completely dependent on the website owner. It’s only visible to those people who have administrative access to a website. Not to mention, it doesn’t help with any type of SEO or brand image.

The word “Howdy” is a form of informal greeting from the old west. Many people aren’t aware of this fact, so that it will seem kind of awkward. Furthermore, many people don’t like this tone f formal greeting.

The only situation changing or removing the greeting message can have any effect is when you share the administrative privileges with other people. They may not like it or want some other sort of greeting message.

How to remove Howdy Admin in WordPress?

There are several methods that one can use to either remove or change the Howdy Admin text. Keep in mind that not all methods can remove it, but they may be able to change it. That’s why choosing one that best suits your requirements is necessary.

Method 1: Use the “Admin Trim Interface” Plugin

Start by hovering over the “Plugins” option and clicking on the “Add New” option.

Go To Plugins And Click Add New.
Go To Plugins And Click Add New.

Search and install the “Admin Trim Interface” plugin.

Search And Install Admin Trim Interface Plugin.
Search And Install Admin Trim Interface Plugin.

Stay on the page and click on the “Activate” button.

Activate Admin Trim Interface Plugin.
Activate Admin Trim Interface Plugin.

Now, go to “Appearance” and click on the “Admin Trim Interface” option.

Go To The Appearance And Click On The Admin Trim Interface Option.
Go To The Appearance And Click On The Admin Trim Interface Option.

Here, you’ll see many options from which you will select the two check-boxes. One for the “Howdy” text and the other for the “Username.”

Note: Check the “Username” check-box if you don’t even want to see your user name on the screen.

After clicking on the “Save Changes” button, you’ll see that the greeting text will disappear from the screen.

Click On The Check-Boxes And Then Click On The Save Changes Button.
Click On The Check-Boxes And Then Click On The Save Changes Button.

This method is best if you only want to remove the Howdy Admin text, but there are other available methods if you want to change the text.

Method 2: Use “AS Admin Customizer” Plugin

Go to Plugins >> Add New.

Go To The Plugins And Click Add New.
Go To The Plugins And Click Add New.

Now, search and install the “AS Admin Customizer” plugin.

Search And Install Admin Customizer.
Search And Install Admin Customizer.

After installing, stay on the page and click the “Activate” button.

Activate The Admin Customizer Plugin.
Activate The Admin Customizer Plugin.

For this plugin, you have to go to Settings and click on the AS Admin Customizer option.

Go To The Settings And Click The As Admin Customizer Option.
Go To The Settings And Click The As Admin Customizer Option.

Go to the “Dashboard” section.

Go To The Dashboard Section.
Go To The Dashboard Section.

Write your own greeting text, which will display right next to the username.

Update The Howdy Text.
Update The Howdy Text.

Click on the “Save Changes” button to make the changes permanent. 

Click The Save Changes Button.
Click The Save Changes Button.

The Howdy Admin text has been changed.

The Howdy Text Changed.
The Howdy Text Changed.

There is another plugin that is good for this very purpose.

Method 3: Use “MC Good-Bye Howdy” Plugin

Go to “Plugins” and click on the “Add New” option.

Go To The Plugins And Click On Add New.
Go To The Plugins And Click On Add New.

Search and install the “MC Good-Bye Howdy” plugin.

Search And Install The Mc Good-Bye Howdy
Search And Install The Mc Good-Bye Howdy

The next step is to activate the plugin.

Activate The Mc Good-Bye Howdy Plugin.
Activate The Mc Good-Bye Howdy Plugin.

The settings for this plugin are available in the settings section.

Go To The Settings And Click On Mc Good-Bye Howdy Plugin.

Here are multiple options available in the drop-down menu. Select the one that best suits your needs. 

After selecting the options, click on the “Save Changes” button.

Select An Option And Click On The Save Changes Button.
Select An Option And Click On The Save Changes Button.

By selecting the default option, you’ll immediately see that the Howdy text will be removed.

Remove Howdy Admin In Wordpress
Remove Howdy Admin In Wordpress.

Method 4: Use Code to Remove the Howdy Admin

It’s a method for those who want more freedom to edit with customization. It’s the go-to option for the people who have a great grasp of coding but for those who don’t want to take risks with changing come a crucial part of the coding; there’s a workaround.

Hover over the “Plugins” option and click the “Add New” button.

Go To The Plugins And Click On Add New.
Go To The Plugins And Click On Add New.

Go to the search bar and search for the “Code Snippet” plugin. Click on the “Install” button to download and install it. 

Search And Install Code Snippets.
Search And Install Code Snippets.

After installation, click the “Activate” button to turn it on.

Activate The Code Snippets Plugin.
Activate The Code Snippets Plugin.

A new option will be available on the menu section of your WordPress Dashboard. Hover over the “Snippet” option and click “Add New.”

Go To The Snippets And Click Add New.
Go To The Snippets And Click Add New.

Here, you’ll be able to add new code without the fear of accidentally deleting something important. First, give a title to the snippet and then enter the code given below:

add_filter( 'admin_bar_menu', 'replace_wordpress_howdy', 25 );

function replace_wordpress_howdy( $wp_admin_bar ) {

$my_account = $wp_admin_bar->get_node('my-account');

$newtext = str_replace( 'Howdy,', 'Hi,', $my_account->title );

$wp_admin_bar->add_node( array(

'id' => 'my-account',

'title' => $newtext,

) );

}
Add A Title And Paste The Code.
Add A Title And Paste The Code.

After that, scroll down and click the “Save Changes and Activate” button.

Click The Save Changes And Activate Button.
Click The Save Changes And Activate Button.

The greeting text will be changed from “Howdy” to “Hi.”

The Howdy Text Changed.
The Howdy Text Changed.

Furthermore, you can remove the greeting entirely. Just remove the “Hi,” from the 4th line of the code. After removing it, the remaining procedure is the same as before.

Note: You can also write something else entirely.

Remove The Text And After Saving The Changes, The Howdy Text Will Disappear.
Remove The Text And After Saving The Changes, The Howdy Text Will Disappear.

If you want to disable or re-enable it, click on the “All Snippets” option.

Click On All Snippets.
Click On All Snippets.

Here, you’ll see that the snippet you just created is available with the title you just gave it. Toggle the switch to enable or disable it.

Toggle The Switch To Turn It On And Off.
Toggle The Switch To Turn It On And Off.

Final Thoughts

To make it short, these are the current ways of changing and removing the Howdy Admin in WordPress. Make sure to use the method that best suits you.

If you have any other suggestions, then feel free to tell us in the comment section below.

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Subscribe to our Monthly Newsletter

Get monthly updates of WordPress tips, tricks, and tutorials in your email.

Thanks. You have successfully subscribed.

Pin It on Pinterest