How to Hide the Welcome Widget from WordPress Dashboard

If you are installing a blog package for a client/customer, you may want to keep the welcome widget from displaying on the WordPress dashboard.

screen options

You don’t want your clients to see the usual welcome intro “Congratulations on installing this blog!” because it may not be useful to them anyway. Besides, you certainly don’t want them to discover the source… 🙂

There are two quick ways to hide the Welcome Widget:

  1. Uncheck it using the “Screen Options” feature.
  2. Edit the child theme’s Theme Functions (functions.php)

Uncheck it using the “Screen Options” feature

You can quickly hide the welcome widget with this option. The disadvantage of this is that your customer may discover it down the road especially if he/she is already familiar with WordPress.

Here’s how to do it:

1 Click on the fly “Screen Options” down menu button located on the top right corner.

opening screen options

2 Uncheck the box “Congratulations on installing this blog!”.

congratulations check

That’s it, you’re done!

Theme Functions (functions.php)

This option will totally remove the welcome widget from your WordPress dashboard and will not be visible in the Screen Options checkboxes. The disadvantage is that if you are not careful enough, it will create a dreadful sitewide error.

Here’s how to do this:

1 Hover your mouse over “Appearance” menu then click “Editor“.

appearance

2 On the theme editor page under “Theme Files“, click on “Theme Functions (functions.php)“.

theme functions

3 Now, delete the line “require_once( get_stylesheet_directory() . ‘/inc/guide.php’ );

code to delete
Code to delete
Code deleted
Code deleted

4 Click “Update File” button.

updatefile

That’s it.

Check your WordPress dashboard. The welcome widget should not be there anymore. Otherwise, you may contact me here and I’ll help you modify the child theme.

You May Also Like