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

Show in menus/show in search off by default?


Go to End


3 Posts   5799 Views

Avatar
mschiefmaker

Community Member, 187 Posts

29 September 2009 at 7:01am

I have a page type where the Show in Menu and Show in Search will always be switched off. Is there a way to set theses so that, that is their default mode?

Thanks

MM

Avatar
Juanitou

Community Member, 323 Posts

29 September 2009 at 7:28am

Hi!

That’s easy. Put the following in your page class:

static $defaults = array (
	'ShowInMenus' => false,
	'ShowInSearch' => false
);

Hope it helps,
Juan

Avatar
mschiefmaker

Community Member, 187 Posts

29 September 2009 at 11:36am

Thanks for the quick response Juan. Works a treat. :-)