I am trying to set a custom title for a node add form in drupal and for some reason it does absolutely nothing, my code in my template.php file is:
function templatename_form_alter($form_id, &$form)
{
if ($form_id == 'contenttypename_node_form') {
drupal_set_title('my custom title');
}
}
Just to add on to this, the above method works great, however if a user edits a node it will shoe the specified title as well, to further this item put