Hi all... thanks for taking a look at this.
I'm developing a website for the journal I work for. Using flexinode.module, I created Issue and Article nodes, and using tagnode.module, I create relationships between the nodes, so that Articles are associated with Issues.
When viewing an Issue node like this one, tagnode generates at the bottom a list of associated articles, with links. (Ignore the static content above the link). What I need is to be able to display the author's name along with the title.
Because "Author" is just a field in my flexinode type, I thought it would be impossible to extract the contents of that one field (because of the way I thought flexinode stored its data)... that is, until I stumbled upon the flexinode type's tabular view. This somehow fetches the author field of each article for display.
So I thought that maybe if I could just tweak the tagnode output (or, as suggested by tagnode's author, "override one of tagnode's theme functions") and mix in some of the code that flexinode is using to generate it tabular view, it could work.
The Code (I couldn't post it here).