Versione Drupal

Cercare o inserire la funzione _form_alter nel template.php

**
* Implementation of hook_form_alter()
*/
function [THME_NAME]_form_alter(&$form, &$form_state, $form_id) {   
    if ('id_card_node_form' == $form_id) {
     // Change title of Edit add page
     drupal_set_title(t('Add content XXXX'));
    }
    return $form;
}