user500665
user500665

Reputation: 1362

TYPO3 Backend Layout Organisation?

I have a range of sites that use their own backend layouts. The problem is the BE layout list shows all the BE layouts for all the sites. Is there a way to just show the layouts intended for use with each site?

Upvotes: 1

Views: 174

Answers (1)

András Ottó
András Ottó

Reputation: 7695

Yes it is possible in the Page TSConfig. See the documentation here or by the Options

The only thing you have to do to set this option value in the Page TSConfig:

options.backendLayout.exclude = <comma_separated_id_list>

Example:

options.backendLayout.exclude = 1,2

Upvotes: 3

Related Questions