I have a View in Drupal (6) which I'm using to build a page for viewing the contents of a node.
A set of n other nodes (of a different type) have content that is related/applicable to this node, and I would like to take their data and print it out in the view too.
I could easily get these nodes programmatically via load_node()
so long as I have the current NID accessible. I tried this first - using a Global: Virtual Formatted Field
in my view. Unfortunately - the variables that are meant to be accessible within this field are all empty. I don't know why this is - as it's the last field in my view, but the result is I can't do anything with it.
I have also tried experimenting with view relationships, but I'm quite new to that and I'm not even sure it's possible to do what I'm trying to using it.
Does anyone have any idea on how I could achieve this?
Thanks