Site Settings
All configuration options are managed via TYPO3 Site Settings. This provides site-specific configuration and better caching behavior.
Configuration is done in your site's config/ file
or via the TYPO3 backend in Site Management > Sites > Edit site > Settings.
Available Settings
Enable/Disable
frontendEdit.enabled
-
- type
-
bool
- Default
-
true
Enable or disable the frontend editing functionality for this site.
frontendEdit: enabled: trueCopied!
Appearance Settings
frontendEdit.colorScheme
-
- type
-
string
- Default
-
'auto'
Choose the color scheme for the frontend editing UI. Options: auto (follows system preference), light, dark.
frontendEdit: colorScheme: 'auto'Copied!
frontendEdit.showStickyToolbar
-
- type
-
bool
- Default
-
true
Show the Toolbar with page editing options and toggle functionality.
frontendEdit: showStickyToolbar: trueCopied!
frontendEdit.toolbarPosition
-
- type
-
string
- Default
-
'bottom-right'
Choose the position for the Toolbar.
Available options:
top-left,top-center,top-rightbottom-left,bottom-center,bottom-rightleft-top,left-center,left-bottomright-top,right-center,right-bottom
frontendEdit: toolbarPosition: 'bottom-right'Copied!
frontendEdit.enableOutline
-
- type
-
bool
- Default
-
true
Show an outline around content elements when hovering over them.
frontendEdit: enableOutline: trueCopied!
frontendEdit.enableScrollToElement
-
- type
-
bool
- Default
-
true
Automatically scroll to the edited content element after saving and returning to the frontend.
frontendEdit: enableScrollToElement: trueCopied!
Filter Settings
frontendEdit.filter.ignorePids
-
- type
-
string
- Default
-
''
Comma-separated list of page IDs (and their subpages) where frontend editing should be disabled.
frontendEdit: filter: ignorePids: '1,2,3'Copied!
frontendEdit.filter.ignoreDoktypes
-
- type
-
string
- Default
-
''
Comma-separated list of page types (doktype) where frontend editing should be disabled. Common doktypes: 1 (Standard), 3 (External URL), 4 (Shortcut), 6 (Backend User Section), 7 (Mount Point), 199 (Menu Separator), 254 (Folder), 255 (Recycler).
frontendEdit: filter: ignoreDoktypes: '4,199,254'Copied!
frontendEdit.filter.ignoreCTypes
-
- type
-
string
- Default
-
''
Comma-separated list of content types (CType) to exclude from frontend editing.
frontendEdit: filter: ignoreCTypes: 'html,div'Copied!
frontendEdit.filter.ignoreListTypes
-
- type
-
string
- Default
-
''
Comma-separated list of plugin types (list_type) to exclude from frontend editing.
frontendEdit: filter: ignoreListTypes: 'news_pi1'Copied!
frontendEdit.filter.ignoreUids
-
- type
-
string
- Default
-
''
Comma-separated list of specific content element UIDs to exclude from frontend editing.
frontendEdit: filter: ignoreUids: '100,200,300'Copied!
Example Configuration
Full example with all available options:
frontendEdit:
enabled: true
colorScheme: 'auto'
showContextMenu: true
showStickyToolbar: true
toolbarPosition: 'bottom-right'
enableOutline: true
enableScrollToElement: true
filter:
ignorePids: '1,2,3'
ignoreDoktypes: '4,199,254'
ignoreCTypes: 'html,div'
ignoreListTypes: ''
ignoreUids: ''