When image nodes are promoted to the Front Page, or when listed on a Taxonomy page, it always shows the "Thumbnail" version of the image. Is it possible to have it display the "Preview" version instead?

I get around this now by creating an image node, and then creating another Story node with the image embedded into it. This seems like too much duplicated work to create second nodes that are essentially the same thing.

You can see what's going on here, where I have created duplicate Image and Story nodes. Ideally, I would just have the Image nodes:

http://vic.gedris.org/taxonomy/term/30

Thanks,
Vic

Comments

vgedris’s picture

A quick hack of image.module fixed this for me:

45c45
<       'arguments' => array('node' => NULL, 'size' => IMAGE_THUMBNAIL),
---
>       'arguments' => array('node' => NULL, 'size' => IMAGE_PREVIEW),
688c688
<   return l(image_display($node, IMAGE_THUMBNAIL), 'node/'. $node->nid, array('html' => TRUE));
---
>   return l(image_display($node, IMAGE_PREVIEW), 'node/'. $node->nid, array('html' => TRUE));

However, it would be nice if this was configurable! Perhaps I'll add a feature request.