Remove the shortcode column from Downloads dashboard
<?php
// Remove the shortcode column from Downloads dashboard
add_filter( 'edd_download_columns', 'child_remove_edd_shortcode_column' );
function child_remove_edd_shortcode_column( $download_columns ) {
unset( $download_columns['shortcode'] );
return $download_columns;
}
?>