If you template does not show the title and description for the taxonomy, add below code to show that to help your customer automate a lot of process..
This example, I will add the title as H2 and description to it.
$term = get_term_by( ‘slug’, get_query_var( ‘term’ ), get_query_var( ‘taxonomy’ ) );
echo ‘<h2 class=”tax”> About ‘;
echo $term->name;
echo ‘</h2>’;
the_archive_description( ‘<div class=”tax-description”>’, ‘</div>’ );