Plugin info

Total downloads: 2,442
Active installs: 50
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 6
Last updated: 8/30/2012 (4871 days ago)
Added to WordPress: 8/3/2012 (13 years old)
Minimum WordPress version: 3.0
Tested up to WordPress version: 3.4.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4871 days ago

20/100

Is Enhanced Mediapicker abandoned?

Possibly abandoned (last update 4871 days ago).

Compatibility

Requires WordPress: 3.0
Tested up to: 3.4.2
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

This plugin will add some nice features to the mediapicker. It will seemlesly integrate with your mediapicker, and it will let you:

  • Switch from List to Grid view
  • The option to show more then 10 items!
  • Display your uploads only
  • Preview images without opening them

It will display a large preview of the media items by hovering over it.

Check out the screenshots for the results.

User specific

The preferences set for the mediapicker are saved to the user profile. So each user can set it’s own personal viewing preferences.

Installation

  1. Upload enhanced-mediapicker to the /wp-content/plugins/ directory
  2. Activate ‘Enhanced Mediapicker’ through the ‘Plugins’ menu in WordPress
  3. That’s it, no configuration needed! You will see the extra options appear in the top of your Mediapicker.

Frequently Asked Questions

Can I change the default value for the number of media items that are displayed?

Yes, if you want to set a different default value for all users in your theme functions.php you can use:

<?php
add_filter('cp_mediapicker_limit', 'my_mediapicker_limit');
function my_mediapicker_limit () {
    return 20; // set your own number of items
}
?>

For individual users you can add the User ID to the filter name. In this example
we will change the default value for User with User ID = 3.

<?php
add_filter('cp_mediapicker_limit_3', 'my_mediapicker_limit');
function my_mediapicker_limit () {
    return 40; // set your own number of items
}
?>

Review feed

No reviews available

Screenshots

  1. Mediapicker with Grid View

    Mediapicker with Grid View

  2. Mediapicker with List Preview

    Mediapicker with List Preview

  3. Mediapicker with Grid Preview

    Mediapicker with Grid Preview

Changelog

0.2

  • fixed preview dimensions for small thumbnails

0.1

  • Initial release.