you can try using a filter function (added into functions.php of your (child) theme), specific to your taxonomy 'topic':(based on https://developer.wordpress.org/reference/functions/get_the_term_list/ and https://developer.wordpress.org/reference/functions/get_the_terms/ )
// define the get_the_terms callback function filter_get_the_topic_terms( $terms, $postid, $taxonomy ) { if( !is_admin() && $taxonomy == 'topic' ) : // make filter magic happen here... $filtered_terms = array(); foreach( $terms as $term ) : if( $term->count > 1 ) { $filtered_terms[] = $term; } endforeach; $terms = $filtered_terms; endif; return $terms;}// add the filter add_filter( 'get_the_terms', 'filter_get_the_topic_terms', 10, 3 );