Hi,
i want to print nodereferences in my theme. I've managed it to show the references node ids with this function:
<?php
$node = node_load($node->nid);
foreach ($node->field_noderef as $links) {
print $links['nid'];
}
Is there a solution to format a link like the nodereference formatter does?