Remove Welcome Panel from WordPress

In WordPress, the “Welcome” panel is a dashboard widget that appears for new users or users who haven’t dismissed it yet. It provides some basic information and links to help users get started with WordPress. If you want to remove the “Welcome” panel from the WordPress dashboard, you can do so using either a plugin or custom code.

Option 1: Remove “Welcome” Panel Using a Plugin

1. Install and activate the “Disable Welcome Panel” plugin. You can find this plugin on the WordPress.org plugin repository.

2. Once activated, the “Welcome” panel will no longer be displayed on the WordPress dashboard.

Option 2: Remove “Welcome” Panel Using Custom Code

If you prefer to remove the “Welcome” panel using custom code, follow these steps:

1. Open your theme’s `functions.php` file or create a custom plugin file.

2. Add the following code to remove the “Welcome” panel:

 

function custom_remove_welcome_panel() {
    remove_action('welcome_panel', 'wp_welcome_panel');
}
add_action('wp_dashboard_setup', 'custom_remove_welcome_panel');

 

3. Save the changes, and the “Welcome” panel will be removed from the WordPress dashboard.

Note: If you’re using a custom theme, it’s generally better to use the custom code approach to avoid unnecessary dependencies on additional plugins.

Please remember that removing the “Welcome” panel doesn’t affect the functionality of your WordPress site; it simply removes the introductory panel that appears on the dashboard. The core features and functionality of WordPress will remain unaffected.

 

Related Blogs

WooCommerce: Add A New Checkout Field.

To add a new checkout field in WooCommerce, you can use the `woocommerce_after_order_notes` action hook to display the new field on the checkout page. Additionally, you’ll need to use the `woocommerce_checkout_process` and `woocommerce_checkout_update_order_meta` filter hooks to handle the validation and saving of the field data.

How To Create A Custom Product Tab On Product Page WooCommerce

To create a custom product tab on a WooCommerce product page, you’ll need to use some custom code. WooCommerce provides hooks and filters that allow you to extend and modify its functionality. Below are the steps to create a custom product tab in WooCommerce:

Disable Automatic Login After Registration

When we enable customer registration on My Account page, We will know that when new user is register it’s automatically logged in .
it need to change when we need to manually approve each user.

Request A Quote

Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.