WPMUDEV is a neat site that offers all sorts of plugins for free and for $$$. Unfortunately, any time you install one of their plugins, it throws a super annoying “nag” message at the top – even if you buy the damn thing!
Up until recently, the Remove WPMUDEV Dashboard Install Nag plugin removed those annoying messages; now it doesn’t for some reason…
Rather than hack around in the plugin trying to figure out why it no longer works, I thought I would implement a simpler and more future-proof solution by throwing some “display:none” css in the admin header like so:
// Remove WPMUDEV's annoying dashboard nag
add_action('admin_head', 'remove_wpmudev_shit');
function remove_wpmudev_shit() {
echo '';
}
Enjoy!
UPDATE: I created a plugin for this: https://github.com/themightymo/remove-wpmudev-nag
More posts from themightymo.com
How to remove dates from permalinks in WordPress and 301 redirect them to the post on WP Engine
Today I needed to update the permalink structure to remove the dates from blog posts on an old website. It’s easy enough to remove the dates – just go to “Settings”->”Permalinks”, and select the “/%postname%/” option – done! Buuuut there’s still the problem of 301 redirecting old urls so as to not lose SEO value.…
How to deactivate all WordPress plugins via the database
Go to phpMyAdmin. Go to the “wp_options” table. Search for the field named, “active_plugins”. Edit the “active_plugins” field. Delete the value/contents of the “active_plugins” row. Save. That’s it! All your plugins are now deactivated!
Website DNS, Domain Registration, & Hosting Basics
Websites have multiple layers: Domain Registration When you register a domain, you pay someone ~$20/year for a .com domain. Registration means you are leasing the domain for a year or more. A domain is the “yoursite.com” or “yoururl.net” or “yourorganization.org” that people type into their browser. We use services like Namecheap, Dreamhost, and GoDaddy for…