I now have a working list of images plus terms without the link, I just need help adding the link from above into this. Every time I try it shows up empty. I know its something simple.
<?php
echo '<ul class="video-series">';
$terms = apply_filters( 'taxonomy-images-get-terms', '', array(
'taxonomy' => 'series'
) );
foreach( (array) $terms as $term) {
echo '<li>' . wp_get_attachment_image( $term->image_id, 'destacado-proyectos-home'). '<span class="termname">' . $term->name . '</span></li>';
}
echo '</ul><!-- .video-series -->';
?>