I've upgraded Drupal 6 and Gallery2 to Drupal 7.
I now have a bunch of Photo Nodes, each node is a single image.
I also have a bunch of stories that have thumbnails.

I need to fix my links so that the inlined images are thumbnails based on the image in the node
And then the link should go to that node.

What I want to do going forward, is to upload a bunch of images as a gallery (using taxonomy) and then write a story linking to those images.

There are a ton of different modules that seem to maybe help me, some aren't in Drupal 7 and others I'm not sure about.

My Ideal solution would be to do something like: [[Node:716]] and write some code to convert that into a img and link. I'd love to do this to make it easy to change what I link to.

Comments

jaak’s picture

https://www.drupal.org/project/node_embed

Documentation:
To switch view mode you can use the argument "view_mode" in the filter tag. If you want to show the teaser view mode you would do it like this: [[nid:2 view_mode=teaser]].
https://www.drupal.org/node/1476024

chrismcbride’s picture

Awesome, this is exactly what I was looking for.
I had to install Display Suite to get rid of the extra node stuff like Title and stuff. Plus I needed to fix the bug in node_embed to handle more than one embedded node. Now it works perfectly.