Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 11 down vote accepted

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
share|improve this answer
Wow, that's pretty buried. Thanks for pointing me to it. – TheLQ Jan 29 '11 at 22:06
Which documentation did you look at? I'll dig around now and update what I can. – sillygwailo Jan 29 '11 at 22:53

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

share|improve this answer
Hmm, I thought it was a vanilla installation I used. I could be wrong though – TheLQ Apr 1 '11 at 21:54
minimum D7 install doesn't enable Field UI – Scott Evernden Nov 19 '11 at 23:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.