By ckeen on
When I create 'page' content I am forced to make a title for this content (which makes sense so that I can identify it); however, can I hide the title at the top of the page when i'm viewing the actual content?
When I create 'page' content I am forced to make a title for this content (which makes sense so that I can identify it); however, can I hide the title at the top of the page when i'm viewing the actual content?
Comments
That's part of your theme.
That's part of your theme. You can read about theming in the Drupal 6 theme guide.
Use CCK
You can selectively (for each node) hide the title using a CCK checkbox field. Here's how I did it:
Now, all you have to do is check/uncheck the Hide Title field when you edit the node. The only drawback to this method is you'll have to edit any existing content to hide their titles.
WARNING - the code you enter in template.php could break your site if there's a typo in it. Be sure and test it first before adding it to your production server.
Thanks a lot this is key!
Thanks a lot this is key!