Skip to content

Instantly share code, notes, and snippets.

@jawinn
jawinn / add_download_count.php
Created July 27, 2018 20:16
Add download count to list of downloads (table) on the WooCommerce Customer's Order Email
<?php
/**
* Add additional 'download-count' column to the table of downloads on the customer's order email.
* @param Array $columns Associative array of key "column_id" and value with the display name https://goo.gl/TDxPLE
*/
function add_order_email_dl_cols($columns) {
return array(
'download-product' => __( 'Product', 'woocommerce' ),
'download-expires' => __( 'Expires', 'woocommerce' ),