Simple Download Counter

Descripción

Simple Download Counter (SDC) provides a simple yet powerful way to count file downloads. Works with any file type that’s supported by WordPress (e.g., JPG, PNG, ZIP, MP4, TXT, and many more).

How it works

Visit the plugin settings to add a download file. Then use the shortcode to display a download link on any post or page. The plugin will then count every download and display it in the plugin settings. You can also display the download count on the front end using a shortcode.

Features

  • Simple and powerful download counter
  • Supports local and remote file URLs
  • Supports any file type supported by WordPress
  • Lightweight – entire plugin size is < 160 KB
  • Super fast and built for optimal performance
  • Clean code tightly integrated with WordPress
  • No Apache/.htaccess required

Check out the screenshots below to get a better idea of the plugin settings and more.

How is this better?

There are numerous “download counter” or “download manager” plugins available, but none of them satisfy all of my specific, stringent requirements:

  • Current with latest WordPress
  • Clean and simple code using WP APIs
  • Lightweight with minimal useless features
  • Supports all local and remote downloads
  • No automatically created posts or pages
  • No advertisements or weird admin notifications
  • No obtuse styling of default WP Admin elements
  • Download posts are visible only in the Admin Area
  • Descriptive error handling for upload files
  • No redundant or sloppy coding practices
  • No requirement for cookies or sessions
  • No requirement for Apache/.htaccess
  • No weird database shenanigans

So I decided to build my own. Let me emphasize the utter simplicity of this plugin. It does one thing and does it well: counts the number of downloads for your files. And makes it easy to display download links and download counts anywhere on the front end.

Privacy

This plugin does not collect or store any user data. It does not set any cookies, and it does not connect to any third-party locations. The only thing this plugin does is count the number of times files are downloaded. So 100% privacy friendly for everyone.

Simple Download Counter is developed and maintained by Jeff Starr, 15-year WordPress developer and book author.

Capturas

  • View Downloads screen
  • Edit Download screen
  • Plugin settings

Instalación

Installing the plugin

Activate like any other plugin and done. For usage instructions, continue reading to the “How to use” section below.

More info on installing WP plugins.

Uninstalling

To uninstall/remove the plugin, visit the Plugins screen, deactivate and delete the plugin. When the plugin is deleted in this way, the plugin options are removed from the database automatically.

Note that any defined downloads/files that may have been added will NOT be removed. Those are left in place in order for the site admin to decide whether or not to delete.

How to use

After activating the plugin, visit Downloads in the WP menu. There you can click “Add New” to add a download file. Here are the steps:

  1. Visit Add New
  2. Give the download a title
  3. Upload your image by clicking “Upload File”
  4. Optionally set the starting count and version
  5. Publish the post and done!

After adding a download, you can display a download link on the front end. Here are the steps:

  1. Visit Downloads to view a list of all downloads
  2. In the “Shortcode” column, click button to copy shortcode
  3. Visit any post or page and paste the shortcode
  4. Save changes and done!

Note: If you’re getting 404 errors when trying to download, here is a quick solution.

To display the count (number of downloads) on any post or page, follow these steps:

  1. Add the count shortcode [sdc_count id="123"] to your page
  2. Change the id attribute value to match your download ID
  3. Save changes and done!

Alternately you can display the download count (and other file information) next to the download link. To learn how, check out the next section on shortcodes.

Shortcodes

Description of shortcodes. Currently there are two shortcodes available: one to display download links, and another to display download counts.

Display download link: [sdc_download]

Attributes:

id      (required) the download ID
wrap    (optional) element to use for markup (p, div, span, none)
text    (optional) download link text
title   (optional) download link title
before  (optional) content to display before the download link
after   (optional) content to display after the download link
class   (optional) custom class for markup (separate multiple classes with commas)
type    (optional) display as "link", "button", or "none" (with none, only the before and after attributes are displayed, no link)

For example, a shortcode configuration that includes some possible attributes:

[sdc_download id="123" wrap="div" text="%title%" before="Download " after=" %size%"]

That will display a download link that says, “Download {download title} 64 KB”. And you can customize further with shortcut variables. Notice where it says %title% and %size%. Those are dynamic placeholders that output the download title and file size, respectively. You can use any of the following shortcuts for the text, title, before, and after attributes:

%id%       displays the download ID
%count%    displays the download count
%title%    displays the download title
%version%  displays the download version
%type%     displays the download type (local or remote)
%ext%      displays the download file extenstion (e.g., JPG)
%size%     displays the download file size

Using these shortcut variables, it’s possible to configure your download links however is desired.

Display download count: [sdc_count]

Attributes:

id      (required) the download ID
wrap    (optional) element to use for markup (p, div, span, none)
before  (optional) content to display before the download count
after   (optional) content to display after the download count
class   (optional) custom class for markup (separate multiple classes with commas)

For example, a shortcode configuration that includes some possible attributes:

[sdc_count id="123" wrap="div" before="Download count: " after=" - Version: %version%"]

That will display a line that says, “Download count: {download count} – Version: {download version}”. You can customize further with shortcut variables. Notice where it says %version%. That outputs the download version. You can use any of the following shortcuts for the before and after attributes:

%id%       displays the download ID
%title%    displays the download title
%version%  displays the download version
%type%     displays the download type (local or remote)
%ext%      displays the download file extenstion (e.g., JPG)
%size%     displays the download file size

Using these shortcut variables, it’s possible to configure your download counts however is desired.

Display total download count: [sdc_count_total]

This shortcode simply displays the total number of (published) downloads.

[sdc_count_total]

No attributes for this one, just add to page and enjoy results.

Display the number of downloads: [sdc_downloads_published]

A simple shortcode to display the number of published downloads:

[sdc_downloads_published]

No attributes, just grab gulp and go.

Display download metadata: [sdc_meta]

Attributes:

id      (required) the download ID
title   (optional) the download title
url     (optional) the download URL
count   (optional) the download count
version (optional) the download version
type    (optional) the download type
ext     (optional) the download file extension
size    (optional) the download size

This shortcode displays any bit of meta information about the download. Here are some examples:

[sdc_meta id="123" size="true"] // displays the file size for download ID 123
[sdc_meta id="123" type="true"] // displays the file type for download ID 123
[sdc_meta id="1728" title="true" count="true"] // displays the title and count

By default, only the id is required. All other attributes are optional. Here is a blank template for quick copy/paste:

[sdc_meta id="" title="" url="" count="" version="" type="" ext="" size=""]

And here is another template with all available attributes set to true:

[sdc_meta id="123" title="true" url="true" count="true" version="true" type="true" ext="true" size="true"]

Remember to be mindful of the id attribute, make sure it is correct according to your downloads.

Questions? Comments? Send ’em via the contact form at Plugin Planet.

FAQ

How to disable inline-block style on button forms?

By default, download button forms are styled with inline-block. To disable and display as block-level, add the following code snippet via theme functions or simple plugin:

function simple_download_counter_button_style($style) { return ''; }
add_filter('simple_download_counter_button_style', 'simple_download_counter_button_style');

No changes necessary, save and done.

Got a question?

Send any questions or feedback via my contact form

Reseñas

11 de marzo de 2023
Easy to use. Just install, add file, set category and paste code or use generated permalink in existing elements (buttons)
4 de febrero de 2023
Perfect ! Simple but very effective ! Exactly what I was looking for, thank you
23 de enero de 2023
This plugin is exactly what I was looking for. And the author is very responsive on the support threads for any questions you might have.
2 de enero de 2023
As you'd expect from respected plugin author Jeff Starr - despite being a new 2022 release, this is a already a solid plugin, that does exactly what you want, in a logical workflow. Install plugin, Add New download (upload afresh, or from an existing url), then add the unique custom url (or shortcode) to your page. Done. (You could even add these custom urls to your email newsletter.) I wanted to know how frequently our PDFs were being downloaded, and this plugin displays the info very nicely in a table on the backend. Highly recommended, 5/5Thanks for all that you do for the WP community, Jeff @specialk.
20 de diciembre de 2022
First most important for all readers: If you encounter a 404 Error when trying this plugin on your site, check the support forum and read there for the solution (Quick summary: Go to your permalink settings and just hit the Save Button - don't do any changes.) This mentioned 404 Error above which occurs when start using this plugin is also one of my reasons, why I give only 4 stars.I suggest, if the bug cannot be fixed easily, that at least a big warning message should be displayed in the settings or at some place where it can be recognized easily. The second reason is, that the shortcode feature is nearly useless for my opinion b/c it cannot be embedded smoothly - at least as I tried it - because it adds line breaks, etc.But this is not a big deal because instead of the shortcode you can always and everywhere just use the permalink of the download. With that you can build custom hyperlinks, buttons, etc. like you want. At last I have to say, that the counter seems to count also automatic downloads by - I guess - search engines?? So, maybe there can be added some filtering in the future. But overall this plugin is offering the basic task which I was searching for: Have download links with an internal counter. Plugin is slim and not bloated at all. Well done! Thank you for providing it.
Leer todas las 9 reseñas

Colaboradores y desarrolladores

«Simple Download Counter» es un software de código abierto. Las siguientes personas han colaborado con este plugin.

Colaboradores

Traduce «Simple Download Counter» a tu idioma.

¿Interesado en el desarrollo?

Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.

Registro de cambios

If you like Simple Download Counter, please take a moment to give a 5-star rating. It helps to keep development and support going strong. Thank you!

1.5 (2023/03/01)

  • Adds type attribute to [sdc_download]
  • Adds shortcode [sdc_meta] to display meta data
  • Improves logic when calling get_current_screen()
  • improves handling of file names that contain spaces
  • Flushes rewrite rules on all SDC settings pages
  • Fixes bug with extra quote added to span tag
  • Adds note on settings page about 404 errors
  • Generates new translation template
  • Tests on WordPress 6.1 + 6.2 (beta)
  • Tests on PHP 8.1 and 8.2

1.4 (2022/10/01)

1.3 (2022/09/29)

  • Removes before and after spans when empty
  • Adds support for multiple class names in shortcodes
  • Adds id attribute to download and count shortcodes
  • Adds total download count shortcode [sdc_count_total]
  • Adds downloads published shortcode [sdc_downloads_published]
  • Improves loading of Quicktag script on post screens
  • Adds link to documentation in Download meta box
  • Adds custom footer text to plugin settings
  • Adds language translation support
  • Improves plugin documentation
  • Tests on WordPress 6.1

1.2 (2022/09/20)

  • Fixes bug with download title placeholder

1.1 (2022/09/16)

  • Improves sanitization

1.0 (2022/09/15)

  • Initial release