hide description Field

I have a very simple schema based on plone.supermodel.model.Schema
I want hide the description (summary) field in the form.
How?

The "Title" and "Description" fields are from the plone.basic or plone.dublincore (which includes plone.basic) behavior. Remove it from your content type xml or in the dexterity control panel.

You will need to manually add back "Title" in your schema unless your content type class handles id and title generation itself.

I just checked. I think you can also just use the plone.namefromtitle behavior which provides the "Title" field.

1 Like

thank you, it's done