Wordpress plugins
Download Count for WooCommerce

Download Count for WooCommerce

Version : 1.18
Tested up to : 6.4
Number of download : 11
Average rating : 0 / 5 on 0 votes 0 votes, 0 avg.rating

Screenshots

Download Count for WooCommerce
Download Count for WooCommerce
Download Count for WooCommerce
Download Count for WooCommerce

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 );

Download now