Plugin info

Total downloads: 3,652
Active installs: 20
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 7 language(s)
Contributors: 1
Last updated: 11/25/2025 (35 days ago)
Added to WordPress: 10/20/2020 (5 years old)
Minimum WordPress version: 4.6
Tested up to WordPress version: 6.9
Minimum PHP version: 8.0

Maintenance & Compatibility

Maintenance score

Actively maintained • Last updated 35 days ago

59/100

Is Download Count for WooCommerce abandoned?

Likely maintained (last update 35 days ago).

Compatibility

Requires WordPress: 4.6
Tested up to: 6.9
Requires PHP: 8.0

Similar & Alternatives

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

Simple Download Monitor
Rating 4.6/5 (146 reviews)Active installs 20,000
MelAbu WP Download Counter Button
Rating 3.6/5 (5 reviews)Active installs 30
WP Plugin Repo Stats
Rating 4.8/5 (4 reviews)Active installs 10
WP Download Counts
Rating 0.0/5 (0 reviews)Active installs 10
WP-PManager
Rating 0.0/5 (0 reviews)Active installs 0
Plugin Download Counter
Rating 0.0/5 (0 reviews)Active installs 0

Description

Displays the number of products downloaded by customers.

Products

  • The download count is displayed below the price of the product.
  • The count is the total number of products downloaded.

Admin panel for products

  • The download count is displayed in the “Downloads” column of the “All products” page in the admin page.
  • The count is the total number of products downloaded.

Admin panel for orders

  • The download count is displayed in the “Products : Downloads” column of the “Orders” page in the admin page.
  • The count will be narrowed down by the product id and order id.

Option

  • There is an option to “Displayed on the administration screen only”, which can be set from the management screen.

Filter

  • Provide a filter to download count html for product.

Filter sample

  • Modifies the HTML for All Products.
/** ==================================================
 * Download Count for WooCommerce
 *
 * download_count_woo
 * @param string $html  html.
 * @param int    $count  count.
 */
function download_countproduct( $html, $count ) {

    $html = '
' . $count . ' ' . __( 'Downloads', 'woocommerce' ) . ''; return $html; } add_filter( 'download_count_woo', 'download_countproduct', 10, 2 );
  • Modifies the HTML for Product ID 331.
/** ==================================================
 * Download Count for WooCommerce
 *
 * download_count_woo_
 * @param string $html  html.
 * @param int    $count  count.
 */
function download_countproduct_331( $html, $count ) {

    $html = '
' . $count . ' ' . __( 'Downloads', 'woocommerce' ) . ''; return $html; } add_filter( 'download_count_woo_331', 'download_countproduct_331', 10, 2 );

Installation

  1. Upload download-count-for-woocommerce directory to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Frequently Asked Questions

none

Review feed

No reviews available

Screenshots

  1. Products

    Products

  2. Admin panel for products

    Admin panel for products

  3. Admin panel for orders

    Admin panel for orders

  4. Management screen

    Management screen

Changelog

[1.21] 2025/04/15

  • Fix – Loading the management screen.

[1.20] 2024/05/28

  • Remove – customers download count list to management screen.

[1.19] 2024/03/03

  • Fix – Added nonce when sorting.
  • Fix – Order Downloadable Item Checking Issues.

1.18

Supported WordPress 6.4.
PHP 8.0 is now required.

1.17

Fixed a problem of ‘woocommerce_get_price_html’ filter.

1.16

Supported High Performance Order Storage(COT).

1.15

Fixed a problem of ‘woocommerce_get_price_html’ filter.

1.14

Fixed a problem that caused an error when there was no count.

1.13

Fixed a problem that caused an error when there was no count.

1.12

Fixed a problem in displaying the number of downloads in the administration screen for multiple products.

1.11

Supported woocommerce 6.5.

1.10

Fixed a problem with customer data load.

1.09

Supported WordPress 5.7.

1.08

Improved the list table in the admin page.

1.07

Fixed display problem in the admin panel.

1.06

Fixed problem of download count for orders page.
Changed text of dropdown list for sort by product page.
Added customers download count list to management screen.

1.05

Added support for sorting by the number of downloads.

1.04

Added downloads column for admin product page.

1.03

Added management screen.

1.02

Change readme.txt.

1.01

Added filter for all products.

1.00

Initial release.