Hi,

It is possible to add a full node display option in the cck formatter for a nodereference.

Actually the maximum we have is node body, that don't include comments. I would like to be able to display the real full node view (so with comments)

Comments

andypost’s picture

I see no possibility because for node view with comments you need to call node_view with flag $page=TRUE so node will be rendered without title.
So or title or comments

andypost’s picture

Status: Active » Closed (won't fix)
mork’s picture

would like to see this as well (I'd even be willing to give up the title display for it).

mork’s picture

my "solution" to this was to have a template for the child node type, node-child-body.tpl.php and use this to show its comments (comment form is also included):

<?php print comment_render($node); ?>

Now, when viewing the parent node, each child node body is followed by its own comments and comment form.

This also has the side effect of showing the comments/form twice when you view that node directly. Will try to kill that side effect one of these days when I have time.