Closed (fixed)
Project:
Drupal core
Version:
5.9
Component:
node system
Priority:
Minor
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
19 Jul 2009 at 17:12 UTC
Updated:
18 Jun 2010 at 01:02 UTC
Hi,
How to display instructions to present to the user below title field on the editing form in the same way like I can do with CCK fields?
Thank you
Regards
Comments
Comment #1
vm commentedlikey have to write a hook_form_alter and add #description
Comment #2
mikey_p commentedWith just modules, you could install CCK and the Automatic Nodetitles module. Then add a CCK field for title, and set the auto node title settings to hide the title field and use the raw token that represents the field you are using for the title. You can then use the display settings of CCK to hide your field, or hide the title.
Comment #3
sopia commentedWorked for me in Drupal 5 on edit form like this
print drupal_render($form['field_nameoftitle']['0']['value']);