Thanks for the plugin, it was exactly what I was looking for !
No Problem! I really wanted it for my site too! Glad you like it.
I'd like to show the image within single.php. I guess I should also be able to choose which taxonomy is involved...
If you are using version 0.3 you should be able to use the get_image_html() method to display images in single views. It takes two arguments: the first is the size of the image and the second is the term_taxonomy_id of the image. Please bear in mind that this is different than the term_id.
To return the image link:
$my_var = $taxonomy_images_plugin->get_image_html( 'detail', $c->term_taxonomy_id );
To print the image link:
$taxonomy_images_plugin->print_image_html( 'detail', $c->term_taxonomy_id );
Hope this helps,
-Mike