JiveDig
11/25/2013 - 2:49 PM

Remove the shortcode column from Downloads dashboard

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

?>