Follow the below instruction to show total Downloads in Easy Digital Downloads (EDD).
Go to functions.php and paste this code:
function edd_count_total_file_downloads() { global $edd_logs; return $edd_logs->get_log_count( null, 'file_download' ); }
Then to bring it all together, you can get the total number of customers, products, and file downloads with the following PHP: Continue Reading