Plugin info

Total downloads: 11,657
Active installs: 100
Total reviews: 3
Average rating: 4.3
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 4/3/2016 (3559 days ago)
Added to WordPress: 4/9/2013 (12 years old)
Minimum WordPress version: 3.3
Tested up to WordPress version: 4.4.34
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3559 days ago • 3 reviews

22/100

Is EDD Download Images abandoned?

Possibly abandoned (last update 3559 days ago).

Compatibility

Requires WordPress: 3.3
Tested up to: 4.4.34
Requires PHP: f

Similar & Alternatives

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

EDD Auto Register
Rating 4.7/5 (12 reviews)Active installs 1,000
Easy Digital Downloads Featured Downloads
Rating 5.0/5 (1 reviews)Active installs 1,000
EDD Hide Download
Rating 5.0/5 (7 reviews)Active installs 700
Easy Digital Downloads – Coming Soon
Rating 4.5/5 (4 reviews)Active installs 200
EDD Downloads As Services
Rating 5.0/5 (3 reviews)Active installs 200
Easy Digital Downloads – Variable Pricing Descriptions
Rating 5.0/5 (2 reviews)Active installs 200

Description

This plugin requires Easy Digital Downloads v2.5 or higher. This plugin allows you to add extra images to your downloads. Use the included shortcode or template tag to display the images on your website. Developers can also use this plugin to get an array of the images and display the images any way they wish (eg slideshow).

Shortcode Usage

[edd_download_images]

Template Tag Usage

if( function_exists( 'edd_di_display_images') ) {
    edd_di_display_images();
}

Filtering the HTML

To alter the HTML, the following filter is provided (example shows an extra

being added around image). Paste this into your functions.php and modify $html to your liking:

function themename_edd_di_display_images( $html, $download_image ) {
    // here a div tag is wrapped around each image
    $html = '
'; return $html; } add_filter( 'edd_di_display_images', 'themename_edd_di_display_images', 10, 2 );

Developers

To get the array of images from the Database you can use the following. This will be useful if you’d like to build a slideshow to show all the download’s images:

$images = ( function_exists('edd_di_get_images') ) ? edd_di_get_images() : '';

// see the images in the array
var_dump( $images );

Plugins for Easy Digital Downloads

https://easydigitaldownloads.com/extensions/

Installation

  1. Upload entire edd-download-images to the /wp-content/plugins/ directory, or just upload the ZIP package via ‘Plugins > Add New > Upload’ in your WP Admin
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Add additional images to each download

Extensions for Easy Digital Downloads

https://easydigitaldownloads.com/extensions/

Tips for Easy Digital Downloads

http://sumobi.com/blog

Follow me on Twitter
http://twitter.com/sumobi_

Frequently Asked Questions

No FAQ available

Review feed

Ruben Garcia
9/3/2016

Really useful and customizable

You can do whatever you want, which gives great versatility to the plugin

Screenshots

  1. The new repeatable image upload fields integrated seamlessly with Easy Digital Downloads

    The new repeatable image upload fields integrated seamlessly with Easy Digital Downloads

Changelog

1.2

  • Fix: Images sometimes were not being saved correctly on first save
  • New: Images can now be reordered via drag and drop. Requires EDD 2.5+

1.1.3

  • Fix: If there were more than 3 images, they weren’t being saved properly due to recent changes in EDD

1.1.2

  • Fix: template tag not working from previous update

1.1.1

  • Fix: [edd_download_images] not showing images in correct location

1.1

  • Fix: Now working for EDD v1.9

1.0

  • Initial release