Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 4330 days ago • 2 reviews
Is EDD List File Names abandoned?
Possibly abandoned (last update 4330 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
This plugin requires Easy Digital Downloads.
Using the included [edd_file_names] shortcode you’ll be able to list a download’s file names (not file paths). This is useful for showing customers what is included when they purchase your product. The shortcode also takes 2 parameters, title and ID. Using the ID you’re able to show a download’s file names from another post/page/download.
Shortcode usage
Basic listing of the current download in an ordered list
[edd_file_names]
Custom title above the list
[edd_file_names title="Files Included"]
Show the download’s files by using it’s ID. Useful when you are also using the [purchase_link] shortcode on another page/post
[edd_file_names id="123" title="Another download's files"]
Modifying the HTML markup
This example shows how you can modify the HTML markup. Heading has been replaced with an tag, and the list is now an unordered list. Copy and paste the following function into your child theme’s functions.php or a custom plugin:
function sumobi_edd_list_file_names( $html, $title, $download_files ) {
ob_start();
if ( $download_files && is_array( $download_files ) ) : ?>
Extensions for Easy Digital Downloads
https://easydigitaldownloads.com/extensions/
Tips for Easy Digital Downloads
Stay up to date
Follow me on Twitter
http://twitter.com/sumobi_
Become a fan on Facebook
http://www.facebook.com/sumobicom
Installation
- Unpack the entire contents of this plugin zip file into your
wp-content/plugins/folder locally - Upload to your site
- Navigate to
wp-admin/plugins.phpon your site (your WP Admin plugin page) - Activate this plugin
OR you can just install it with WordPress by going to Plugins >> Add New >> and type this plugin’s name
Frequently Asked Questions
Review feed
Screenshots
Changelog
1.0.1
- New: Added edd-file-names CSS class on ordered list for easier styling
1.0
- Initial release