Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Remove "Allow comments on this page?" from "Behavior" tab


Go to End


2 Posts   986 Views

Avatar
DeklinKelly

Community Member, 197 Posts

10 August 2011 at 9:52am

I do NOT want the item: "Allow comments on this page?" to be displayed in the administrator tab under the "Behavior" tab.

How can it be removed?

Avatar
(deleted)

Community Member, 473 Posts

10 August 2011 at 10:35am

Edited: 10/08/2011 10:35am

public function getCMSFields() {
	$fields = parent::getCMSFields();
	$fields->removeByName('ProvideComments');
	return $fields;
}