Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Created November 25, 2013 14:49
Show Gist options
  • Select an option

  • Save JiveDig/7642338 to your computer and use it in GitHub Desktop.

Select an option

Save JiveDig/7642338 to your computer and use it in GitHub Desktop.
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;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment