Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Teaser in Drupal 7

Tags:

php

drupal

I'm attempting to disable the Teaser in Drupal 7. All of the guides I've found deal with Drupal 6 or use unnamed plugins. I simply have a stock Drupal installation with no additional modules installed.

Where can I disable the Teaser function? Do I need a module? I really don't want to modify the theme or Drupal core as that's a bit, hackish.

like image 509
TheLQ Avatar asked Jan 29 '11 19:01

TheLQ


2 Answers

To remove the Teaser display in Drupal 7:

  1. Administer → Structure → Content types
  2. click the "Manage display" link for your content type
  3. drop down "Custom display settings"
  4. uncheck "Teaser"
  5. save the content type

Or did you mean disable the "Edit summary" link that drops down a textarea for a node summary? To do that:

  1. Administer → Structure → Content types
  2. click the "Manage fields" link for the content type
  3. in the row for "Body", click the "edit" link
  4. uncheck "Summary input"
  5. save the content type
like image 115
sillygwailo Avatar answered Nov 19 '22 23:11

sillygwailo


If anybody is having problems with locating the "Manage Fields" link, make sure to enable the 'Fields UI' module.

like image 45
Rian Rainey Avatar answered Nov 20 '22 01:11

Rian Rainey