How to completely remove nag for recommended plugins
-
Topic
-
Maybe you’re tired of seeing the recommended plugins nag when you switch between themes? Or you’ve got a ton of users on your site, and you don’t want them seeing this?
Well, of course, it’s super easy to remove. Just add this to your child theme’s functions.php:
remove_action('after_setup_theme', 'themeblvd_plugins');
Note: This also eliminates the unnecessary loading of extra stuff on your WordPress admin. So, while maybe not all that relevant for memory usage on your server, every little bit can help, as this stops the entire plugin management system from even being included.
- You must be logged in to reply to this topic.