I got it working. In case anyone needs this.
<?php
$tagSlug = single_tag_title(“”, false);
$string = strtolower($tagSlug);
$artistTag = preg_replace(‘/\s+/’, ‘-‘, $string);
$terms = get_terms( array(
‘taxonomy’ => ‘album’,
‘search’ => $artistTag,
) );
if( $terms ): ?>
<div class=”album-name”>
<div class=”col-md-12″>
<h3 class=”p15″>Albums</h3><
</div>
<div class=”row”>
<?php foreach( $terms as $term ): ?>
<div class=”col-lg-2 col-md-3 col-xs-5 thumb”>
“>
term_id, ‘medium’, TRUE); ?>” alt=”<?php echo $term->name; ?>”>
“><span class=”taxography-name”><?php echo $term->name; ?></span>
</div>
<?php endforeach; ?>
</div>
</div>
<?php endif; ?>