Adding the below filter on the wordpress functions.php will remove […] from all the post excerpts.

function sjp_excerpt_more( $more ) {
    return '';
}
add_filter('excerpt_more', 'sjp_excerpt_more');

You may also like...