Skip to content

Instantly share code, notes, and snippets.

@amdrew
Created November 23, 2013 04:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amdrew/7610982 to your computer and use it in GitHub Desktop.
Save amdrew/7610982 to your computer and use it in GitHub Desktop.
Remove the "shortcode" column from Easy Digital Download's "All Downloads" screen
<?php
function my_child_theme_remove_edd_shortcode_column( $download_columns ) {
unset( $download_columns['shortcode'] );
return $download_columns;
}
add_filter( 'edd_download_columns', 'my_child_theme_remove_edd_shortcode_column' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment