How do I replace the "node view" screen in Drupal 6? -
I do not need node "view" screen / tab for certain types of content. Instead, when I go to a user / node / NID I want to show the node editing form.
How do I do this?
Thank you, Omer.
One way to do this, use hook_menu_alter
> Node / [nid] menu item and you call your function. In that function you can check the node type and call the function used to display the node or the function used to display the node form.
Comments
Post a Comment