Hi,<br><br>I have created a new node from the Create &quot;content page&quot; (say node/20)... and then i need to affect my node to the sub menu item below.<br>How i can do please ?<br><br>Because the subitem link I need is to access my node like this :<br>
   <a href="http://127.0.0.1/mysite/?q=node/20">http://127.0.0.1/mysite/?q=node/20</a><br><br>but not as described by my menu :<br>  <a href="http://127.0.0.1/mysite/?q=menu1/subitem1">http://127.0.0.1/mysite/?q=menu1/subitem1</a><br>

<br>I think i could call the &quot;test&quot; callback, loading and theming my node... but maybe is there a simpler way ?  (override path or link...)<br><br>------------<br>function list_projects_menu() {<br><br>  $items[&#39;menu1&#39;] = array(<br>
    &#39;title&#39; =&gt; t(&#39;my infos&#39;),<br>    &#39;page callback&#39; =&gt; &#39;show_page&#39;,<br>    &#39;access callback&#39; =&gt; TRUE,<br>    &#39;type&#39; =&gt; MENU_NORMAL_ITEM,<br>  );<br><br>  $items[&#39;menu1/subitem1&#39;] = array(<br>
    &#39;title&#39; =&gt; t(&#39;my infos&#39;),<br>
    &#39;page callback&#39; =&gt; &#39;test&#39;,       // node/20 ?<br>    &#39;access callback&#39; =&gt; TRUE,<br>  );<br>}<br><br>Cédric<br>