我使用了拼写错误10并添加了Felogin扩展,但是我想在我自己的fluid扩展中自定义/编辑登录模板
我已经尝试添加
plugin.tx_felogin_pi1 {
templateFile = EXT: my_extension/Resources/Private/Templates/Pages/Login.html
}而是显示默认模板。还有更少的代码吗?
发布于 2020-06-19 00:09:58
要在feLogin中使用新的流体模板,必须添加此Typoscript设置:
plugin.tx_felogin_login {
view {
templateRootPaths.1 = EXT:site_package/Resources/Private/Templates/
}
}发布于 2020-02-17 16:27:10
首先,您需要查看功能切换是否设置正确。如果你为felogin激活了"Extbase“,定制就会有所不同(与其他Extbase/Fluid扩展一样,使用plugin.xxx.view.templateRootpaths )。
只需查看Fluid的TypoScript代码和更改的小文档:https://docs.typo3.org/c/typo3/cms-core/master/en-us/Changelog/10.2/Feature-88102-FrontendLoginViaFluidAndExtbase.html
https://stackoverflow.com/questions/60256228
复制相似问题