Simplified & more useful Plugin Install page, replacing Featured tab with bigger search. Additional Topics tab with curated topic tag list.
Cleaner Start Page for “Add Plugins” (Installer)
A LARGE search box to find plugins for installing more easily and way faster.
No clutter. The regular content of the “Featured” tab was removed: not the 6 same old plugin cards cards any longer and no useless tag cloud anymore!
Plus: set the number of displayed plugin cards per page via “Screen Options” tab (on top right corner).
As of WordPress 4.0+, going to “Add Plugins” page and being welcomed by always the same old 6 featured plugin cards annoyed me big time! So I thought on how to change this default behavior. Due to WordPress’ genius Hooks & Filter functionality I could easily tweak this via my plugin.
Now it starts with what should have been the default (in my opinion) from the beginning: a large and nice plugin search box – because that’s what I do all the day :). Side benefit: better performance as no external plugin card content has to be loaded!
And there you have it, a one-purpose admin helper plugin aiming at (super) administrators and webmasters searching for and installing plugins from WordPress.org repository on a daily basis.
original video link:Screencast by plugin developer David Decker
plugin-install.php
admin start page!/wp-admin/
when and where needed.install_plugins
for your user role (to access the plugin installer page)!cleaner-plugin-installer.pot
) for translators is also always included 🙂Enjoy using Cleaner Plugin Installer? Please consider making a small donation to support the project’s continued development.
/wp-content/languages/cleaner-plugin-installer/
(just create this folder) – This enables you to use fully custom translations that won’t be overridden on plugin updates. Also, complete custom English wording is possible with that as well, just use a language file like cleaner-plugin-installer-en_US.mo/.po
to achieve that.Easy plugin translation platform with GlotPress tool:Translate “Cleaner Plugin Installer”…
Note: All my plugins are internationalized/ translateable by default. This is very important for all users worldwide. So please contribute your language to the plugin to make it even more useful. For translating and validating I recommend the “Poedit Editor”, which works fine on Windows, Mac and Linux.
As of WordPress 4.0+ the new plugin installer start page was annoying me. By scratching my own itch here I came up with this plugin ;-). I hope you enjoy it as much as I do :).
Special Thanks go out to my family for allowing me to do such spare time projects (aka free plugins) and supporting me in every possible way!
cleaner-plugin-installer
folder to the /wp-content/plugins/
directoryinstall_plugins
for your user role (to access the plugin installer page)!
original video link:Screencast by plugin developer David Decker
Own translation/wording: For custom and update-secure language files please upload them to /wp-content/languages/cleaner-plugin-installer/
(just create this folder) – This enables you to use fully custom translations that won’t be overridden on plugin updates. Also, complete custom English wording is possible with that, just use a language file like cleaner-plugin-installer-en_US.mo/.po
to achieve that (for creating one see the tools on “Other Notes”).
Cleaner Plugin Installer: BEFORE view of the "Plugins > Add Plugins" admin page (Add New). (Click here for larger version of screenshot)
Cleaner Plugin Installer: AFTER view of the "Plugins > Add Plugins" admin page (Add New), after activating this plugin. (Click here for larger version of screenshot)
Cleaner Plugin Installer: Additional "Topics" tab -- 2 column view since version v1.1.0. (Click here for larger version of screenshot)
Cleaner Plugin Installer: Additional "Collections" tab (Click here for larger version of screenshot)
Cleaner Plugin Installer: Added "Screen Options" tab for setting number of plugin cards per page - on a per user basis. (Click here for larger version of screenshot)
Cleaner Plugin Installer: Tweaked ZIP uploader page with larger file input field and bigger upload button. (Click here for larger version of screenshot)
Cleaner Plugin Installer: Added little note on Network plugin installer screen in Multisite to make it crystal clear where the installing happens! :) (Click here for larger version of screenshot)
Cleaner Plugin Installer: Also added littel note to a (Sub) Site's plugins page - to make it crystal clear, where what happens (only in Multisite installs!). (Click here for larger version of screenshot)
Cleaner Plugin Installer: Search field and plugins counter integration for "At a Glance" Dashboard widget. (Click here for larger version of screenshot)
Cleaner Plugin Installer: Search field and network plugins counter integration for "Right Now" Dashboard widget in Multisite's Network admin. (Click here for larger version of screenshot)
Cleaner Plugin Installer: Plugin's help tab. (Click here for larger version of screenshot)
Yes, but only its content! The page query parameter ?tab=featured
was left untouched! This way all works as before, if you access the plugin-install.php
admin page, but you’ll be welcomed with a big search input field.
In my opinion this helps to find specific plugins (within certain areas, topics, use cases…) a lot faster – via your admin area. For example, clicking on “TinyMCE” will list you all plugin cards tagged (by their authors) with “tinymce”.
The original built-in plugin tag cloud is way to generic, so I removed it.
Note: Manually curated tag lists for a lot of plugin types, use cases and popular plugin solutions. Listing here maintained by David Decker (plugin author of “Cleaner Plugin Installer”). Tag itself are from plugin’s readme header.
Glad you asked :). This is a bit more experimental, I guess. However, in my opinion, the WPCore plugin and service are incredible useful, so I thought of some basic integration. This could help to jump faster to WPCore functionality if the service is already active. If it is not active yet, users are informed about it and can install and register for it super fast. This may help users get aware of an alternative for collecting & managing their favorite plugins – and bulk installing them on any installation.
Disclaimer: “I am NOT affiliated with ‘WPCore’ in any way, other than that, being a normal user of their service & plugin. ‘WPCore’ is a community effort aiming to make some things a bit easier for a lot of administrators and webmasters.” —David Decker, author of “Cleaner Plugin Installer” plugin
I think it is really useful to easily check for the newest additions on WordPress.org plugin repository without leaving your admin area. Also great for test installations to just install a brand new plugin and try it out! 🙂
Absolutely! Just open a new thread in the support forum here and let us know your feedback! Thank you!
This is easily possible with a little code snippet added to a functionality plugin, snippet manager or to your theme’s/ child theme’s functions.php
:
add_filter( 'install_plugins_tabs', 'custom_cpi_plugin_installer_tabs_tweaks', 15, 1 ); /** * Plugin: Cleaner Plugin Installer * Remove "Collections" tab. * * @param array $tabs * * @return array Array of (tweaked) plugin installer tabs. */ function custom_cpi_plugin_installer_tabs_tweaks( $tabs ) { unset( $tabs[ 'collections' ] ); return $tabs; } // end function
—> Note: I only recommend using a custom functionality plugin, or snippets manager plugins like “Code Snippets” or “Toolbox”. — Customizing your functions.php
is always dangerous and at your own risk! You may experience a crashed site plus lots of trouble when changing your theme/ child theme afterwards. Also, any generic admin functionality has no place in your theme!
Possible, via the above code for “Collections” tab: you only have to add the following line after the first “unset” line (or replace this line with that):
unset( $tabs[ 'topics' ] );
For power users this is to remove/ hide the following things:
That is relatively easy, just add the following code snippet to your wp-config.php
file or a functionality plugin:
/** * Plugin: Cleaner Plugin Installer - activate Slim Mode. */ if ( ! defined( 'CPI_SLIM_MODE' ) ) { define( 'CPI_SLIM_MODE', TRUE ); }
.pot
file for all translators.$page = 1
to all our tab functions to be 100% compliant with WordPress Core functions expecting this.readme.txt
file here..pot
file for all translators.readme.txt
file..pot
file for all translators..pot
file for all translators.:hover
styling for any instance showing “plugin cards” – this way you can better visually distinguish those cards!readme.txt
file..pot
file for all translators.readme.txt
file..pot
file for all translators..pot
file for all translators.readme.txt
file.