A TYPO3 version later, but a similar problem with v13.4 - maybe the same cause. I have a dropdown in my navbar to login/logout on every page.
My setup:
lib.loginBox = USER
lib.loginBox {
plugin.felogin.showForgotPassword = 0
felogin.showForgotPassword = 0
#page und showForgotPassword don't work
# 5 page with regular plugin
plugin.tx_felogin_login.settings.pages = 5
plugin.tx_felogin_login.settings.showLogoutFormAfterLogin = 1
#outdated? https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.5.x/Important-98122-FixFeloginVariableNameInTypoScriptSetup.html
plugin.tx_felogin_login.settings.showForgotPasswordLink = 0
plugin.tx_felogin_login.settings.showForgotPassword = 0
userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
extensionName = Felogin
pluginName = Login
settings < plugin.tx_felogin_login.settings
settings {
#pages - ##Storage Page with the Website User Records## plugin
pages = 7
# does not work
# showForgotPassword = 1
showForgotPassword = 0
showLogoutFormAfterLogin = 1
}
#custom templates
view {
templateRootPaths {
#10 = {$plugin.tx_felogin_login.view.templateRootPath}
50 = EXT:ubsp/Resources/ext/fe_login/Resources/Private/Templates2/
}
partialRootPaths {
50 = EXT:ubsp/Resources/ext/fe_login/Resources/Private/Partials2/
}
}
}
in my navbar template I use <f:cObject typoscriptObjectPath="lib.loginBox" />
This work fine, but has some disadvantages
Problems I'm struggeling with:
A user receives two emails when demands forgot password. I couldn't find a way to limt the actions in my lib.loginBox to login, overweiw and logout.
The info-texts show up only in the dropdown form, not at the regular-plugin.
When I try to use a more simple template in the dropdown, I can't login (refer to https://t3forum.net/d/900-fe-login-in-navbar/23).
Do I have a mistake or is this a bug in felogin?
Thanks in advance for your help