Created
December 3, 2015 12:40
-
-
Save vijayrami/9f57d1f7f48477f08896 to your computer and use it in GitHub Desktop.
How To disable Page Configuration tab in typo3 backend
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Add Below Code in your Page Typoscript Configuration. | |
| # For Not Displaying page Configuration tab | |
| TCEFORM.pages.tx_fed_page_flexform { | |
| # You cannot edit the Page Configuration field now: | |
| disabled = 1 | |
| } | |
| TCEFORM.pages.tx_fed_page_flexform_sub { | |
| # You cannot edit the Page Page Configuration - subpages field now: | |
| disabled = 1 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment