Search code examples
typo3typoscripttypo3-9.x

Giving no-admin users access to Template module


I'm setup a TYPO3 website and I need to give a user group the permission to view and edit to the Template module.

enter image description here

On the TYPO3 documentation I found this information :

If you cannot see the Template module, it may be that you are not logged in as an administrator. Please change user and make sure you use one with administrator rights.

There is no a work-around to give backend users access to the Template module ?


Solution

  • I was able to make the "Web -> Template" module accessible to non-administrators

    typo3\sysext\frontend\Configuration\TCA\sys_template.php

    Change line 16:

    'adminOnly' => true,
    

    to

    'adminOnly' => false,
    

    Now, you can Edit Backend usergroup and check the option Template [sys_template] on Tables (listing) and Tables (modify)