By edalcin on
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
It wont be difficult to
It wont be difficult to implement with the node.tpl.php or more specific a node-[node type].tpl.php.
_
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'.
That should do the trick!
That should do the trick! Thanks!
Remember that the title is
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'].