Hi Folks,

Is it possible to *NOT* have the "Title" as a Node Title? I would like to "kill" the Title of a node, using something else, as a title, such as a Taxonomy Term, or even a CCK Field. Is it possible, or, better putting, there are any module that make this possible?

Thanks in advance!

Comments

Anonymous’s picture

It wont be difficult to implement with the node.tpl.php or more specific a node-[node type].tpl.php.

WorldFallz’s picture

You can use http://drupal.org/project/auto_nodetitle to set a title automatically and to hide it. Then, you can use whatever field you like as a 'title'.

edalcin’s picture

That should do the trick! Thanks!

nevets’s picture

Remember that the title is printed in two places, page.tpl.php (full nodes and other pages) and node.tpl.php (teasers, nodes in lists).

One approach is to implement hook_preprocess_page() and hook_preprocess_node(), see http://drupal.org/node/223430 for details.
In hook_preprocess_page() you could override $variables['title'] if $variables['node'] is set. In hook_preprocess_node you could override $variables['title'].