Step 2 - Create a new node.tpl using this view.
Submitted by admin on Tue, 2009-10-27 00:39
The key to making this all work is to create a node.tpl for this node type which pulls in the view which we just created.
// basically for preview case for intial create when we don't yet have a NID
if (!$node->nid) {
include (path_to_theme() . "/node.tpl.php");
return;
}$view = views_get_view('news_override');
$view->set_arguments(array($node->nid, 'all'));echo $view->preview();
in


