The dropdown menu register links for EasyBlog, EasyDiscuss, Komento and EasySocial go to the full registration page by default (../menuname/registration) and I make the following adjustments to make the link go to the short/quick registration form (../menuname/login) by changing the word 'registration' to 'login' in the following 5 files:
At "$link = FRoute::registration();" for
/components/com_easysocial/themes/elegant/toolbar/default.login.php - at line 36
/components/com_komento/helpers/login.php - at line 51
At "<div class="popbox-dropdown__meta"><?php echo JText::sprintf('COM_EASYDISCUSS_TOOLBAR_NEW_USERS', '<a href="'. ED::getRegistrationLink() .'">' . JText::_('COM_EASYDISCUSS_TOOLBAR_REGISTER') . '</a>');?></div>" for
/components/com_easydiscuss/themes/wireframe/toolbar/default.php - at line 308
At "<a href="/<?php echo EB::getRegistrationLink();?>" class="float-r"><?php echo JText::_( 'COM_EASYBLOG_REGISTER' );?></a>" for
/components/com_easyblog/themes/wireframe/toolbar/default.php - at line 234
At "<a href="/<?php echo EB::getRegistrationLink();?>" class="btn btn-block btn-success"><?php echo JText::_('COM_EASYBLOG_CREATE_AN_ACCOUNT'); ?> <i class="fa fa-angle-right"></i></a>"
/components/com_easyblog/themes/wireframe/login/default.php - at line 59
I need to make the changes again every time after an update to a new version, is there an override option I can use instead to only require making the change once?
It would be nice to have an Yes/No "Go to Login?" option in Admin for each component to choose between going to Registration and Login from the toolbar dropdown Registration link.