Changing the Node Creation Title in Drupal
REMOVE ‘CREATE’ FROM NODE/ADD- DRUPAL
From sites/default/settings.php add the following code snippets at the end. This will remove the default word ‘create ‘ from all node/add page.
$conf[‘locale_custom_strings_en’] = array(
# ‘forum’ => ‘Discussion board’,
# ‘@count min’ => ‘@count minutes’,
‘Create @name’ => ‘@name’
);
# ‘forum’ => ‘Discussion board’,
# ‘@count min’ => ‘@count minutes’,
‘Create @name’ => ‘@name’
);

Post a Comment