I know the module by default puts the link in the links section of the page. I would like to have control over where these link is place in my contemplate. I would also like to be able to place the link in a block that loads to the right of my content and displays the nodes currently referenced to the main node. How can I do this?

Comments

quicksketch’s picture

Read the README.txt file and copy/paste the examples from there.

As HTML:
<a href="/node/add/story/10">Add a story</a>

Or in PHP code:
<a href="<?php print url('node/add/story/' . $node->nid); ?>">Add a story</a>