Hi there
First up let me apologise for being a JSP guy who has just encountered PHP. So I don't know much and have all sorts of assumptions getting in the way.
I am trying to create custom nodes using CCK and to present those nodes nicely using contemplate. There are two types of custom nodes, ads and ad categories. Each ad category will contain a bunch of ads. The thing is that each ad has a picture, and I want to display the full picture in each ad and a thumbnail in the ad categories page. At present the picture in the ad page is a nodereference field type, that points to an image (image module). So it simply displays in the ad page, as a text link to the image page .
I thought that by using contemplate I could show the picture by tweaking the template for the ad custom node type, and do something similar to show thumbnail images in the ad category.
So That is what I am trying to do. However the only output that seems to work from the contemplate template is $item['view']
If I try anything like $item['title'] or $item['field_picture_0'][0] I get no output. To put it another way, I am trying to display members of a contained node, and the only thing that works is ['view'] which gives me a text link.
I suspect I am probably really barking up the wrong tree. Can I do what I want to do using CCK and Contemplate?
Is there a more direct way of achieving what I am trying to do?