Download Count For WooCommerce Wordpress Plugin - Rating, Reviews, Demo & Download

Download Count For WooCommerce Wordpress Plugin - Rating, Reviews, Demo & Download
No ratings yet
Free
Follow for free plugins, new theme releases and theme news

Plugin 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 = '<br /><span style="color: green;">' . $count . ' ' . __( 'Downloads', 'woocommerce' ) . '</span>';

    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 = '<br /><span style="color: red;">' . $count . ' ' . __( 'Downloads', 'woocommerce' ) . '</span>';

    return $html;

}
add_filter( 'download_count_woo_331', 'download_countproduct_331', 10, 2 );

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


Reviews & Comments