You are here

README.txt in Exclude Node Title 6

Same filename and directory in other branches
  1. 8 README.txt
  2. 7 README.txt
Exlucde Node Title
===========================


Introduction
---------------------

This module handles a very simple functionality, decide whatever to exclude a node title from full node page or node teasers.

It provides a checkbox on node-edit pages for easier exclusion, or you can use the admin page to manually enter a list of node id's to exclude title.

This module also provides the option to hide all titles of a certain Content type. From the administrative interface you can select a content type to hide title for.


Use case
---------------------
Let's say you create a content type called: Lightbox content, and in your layout lightbox content will have titles set on title attribute of the link, rather than inline on your page, so you would like to exclude title from displaying inline for all your nodes of type Lightbox content, simple, just check the option and voila.


How it works?
----------------------
This project has some other, very simple approaches, like hiding the title from CSS using display: none or applying the template_preprocess_page hook in your theme to make `title` variable null.
Actually `Exclude Node Title` does the same thing, only that you don't have to manually make different hacks, hard to track from the administration interface.



Original Author: Gabriel Ungureanu <gabriel.ungreanu@ag-prime.com>
Current Maintainer: Yonas Yanfa <http://drupal.org/user/473174>

File

README.txt
View source
  1. Exlucde Node Title
  2. ===========================
  3. Introduction
  4. ---------------------
  5. This module handles a very simple functionality, decide whatever to exclude a node title from full node page or node teasers.
  6. It provides a checkbox on node-edit pages for easier exclusion, or you can use the admin page to manually enter a list of node id's to exclude title.
  7. This module also provides the option to hide all titles of a certain Content type. From the administrative interface you can select a content type to hide title for.
  8. Use case
  9. ---------------------
  10. Let's say you create a content type called: Lightbox content, and in your layout lightbox content will have titles set on title attribute of the link, rather than inline on your page, so you would like to exclude title from displaying inline for all your nodes of type Lightbox content, simple, just check the option and voila.
  11. How it works?
  12. ----------------------
  13. This project has some other, very simple approaches, like hiding the title from CSS using display: none or applying the template_preprocess_page hook in your theme to make `title` variable null.
  14. Actually `Exclude Node Title` does the same thing, only that you don't have to manually make different hacks, hard to track from the administration interface.
  15. Original Author: Gabriel Ungureanu
  16. Current Maintainer: Yonas Yanfa