I have been trying to change the add node form but node-form, the name of the form does not seem to respond to hook_form_alter. Is this a bug or is there another name that can be used in the code?
/**
* Implementation of hook_form_alter().
*/
function flashgame_form_alter($form_id, &$form) {
if ($form_id == 'node_form'){
unset($form['title']);
}
}
I think there was a post on how to make the edit page go back to edit page on submit but I can't find it.
What I would like to do is when users create a certain node type, after they preview and submit, I would like to send them directly to the "Send to Friend' page. Hopefully this would encourage them to share their new articles and increase membership for the site.