Add this to your theme’s functions.php file to get rid of those pesky media-credit shortcodes:
<?php
function ignore_media_credit_shortcode( $atts, $content = null ) {
return $content;
}
global $shortcode_tags;
if ( !array_key_exists( 'media-credit', $shortcode_tags ) )
add_shortcode('media-credit', 'ignore_media_credit_shortcode' );
?>
Also, I’d really appreciate it if you gave us some feedback as to why you disabled the plugin and how it could have better suited your needs.