TYPO3 - Hide "Reset user settings to default state" Button in with UserTS

107 Views Asked by At

I try to hide all fields in the user-settings, that should not be accessible for non-admins.

In the Tab Edit and advanced functions, i've hidden all fiels with this UserTS:

setup {
    fields {
        startModule.disabled = 1
        edit_RTE.disabled = 1
        resizeTextareas_Flexible.disabled = 1
        resizeTextareas_MaxHeight.disabled = 1
        titleLen.disabled = 1
        thumbnailsByDefault.disabled = 1
        edit_docModuleUpload.disabled = 1
        showHiddenFilesAndFolders.disabled = 1
        copyLevels.disabled = 1
        recursiveDelete.disabled = 1
    }
}

After that I realized that there is a button on the bottom, that has no table-definition that I can find out by the chrome developer console:

German Backend English Backend

Does anyone know a way to hide this button with UserTS, to make the whole Tab disappear?

Thanks :)

0

There are 0 best solutions below