Make first letter of my taxonomy uppercase
Build the links yourself: $terms = get_the_terms($post->ID, ‘trpropcity’); if($terms) foreach($terms as $term) echo ‘<a href=”‘.get_term_link($term, ‘trpropcity’).'”>’.ucwords(strtolower($term->name)).'</a>’;