21309 Posts in 5738 Topics by 2603 members
General Questions
SilverStripe Forums » General Questions » Remove "Allow comments on this page?" from "Behavior" tab
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 418 Views |
-
Remove "Allow comments on this page?" from "Behavior" tab

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?
-
Re: Remove "Allow comments on this page?" from "Behavior" tab

10 August 2011 at 10:35am Last edited: 10 August 2011 10:35am
public function getCMSFields() {
$fields = parent::getCMSFields();
$fields->removeByName('ProvideComments');
return $fields;
}
| 418 Views | ||
|
Page:
1
|
Go to Top |

