Search code examples
typo3felogin

TYPO3 felogin: remove legend


Simple question: how can I remove the html <legend> tag from my felogin content elements? I've read the felogin documentation but I still don't understand how to do it.


Solution

  • First, copy the template to your own theme extension (or fileadmin folder). Then, remove all the markup that you don't need.

    Use this TypoScript to let your system know where to find the new felogin template:

    plugin.tx_felogin_pi1.templateFile = EXT:yourtheme/Resources/Private/Extensions/felogin/FrontendLogin.html
    

    (Change the path to your fileadmin, if you save the template file there.)

    HTH!