Topic-icon ´/´ change to ´|´ in login / register

Active Subscriptions:

None
10 years 7 months ago - 10 years 7 months ago #40536 by Vero
Hi Alex,

I want to change " / " to " | " in Login / Register to Login | Register. where is it? Also why in login popup window "remembe me" is not at first and than login button? In joomla module it is others. How can I replace those two?

Can you help me?

Vero

Sorry for bad English...
Last edit: 10 years 7 months ago by Vero.
The topic has been locked.
Support Specialist
10 years 7 months ago #40556 by alzander
The / or | separator is defined in our langauge file. Please edit /language/xx_YY/xx_YY.mod_sclogin.ini and edit the following key to whatever character you want:
MOD_SCLOGIN_LOGINREG_SEPARATOR=" / "

The Remember Me button can be moved by editing our template files. Please edit the /modules/mod_sclogin/tmpl/joomlaLogin_vertical.php file. In there, look for the following block:
<?php if (JPluginHelper::isEnabled('system', 'remember')) : ?>
                    <div class="control-group" id="form-sclogin-remember">
                        <label for="sclogin-remember">
                            <input id="sclogin-remember" type="checkbox" name="remember" class="inputbox" value="yes" alt="Remember Me" />
                            <?php echo JText::_('JGLOBAL_REMEMBER_ME'); ?>
                        </label>
                    </div>
                <?php endif; ?>
Move that up a div block to before the block of code that starts like:
<div class="control-group" id="form-sclogin-submitcreate">
                    <button type="submit" name="Submit" class="btn btn-primary <?php if (!$showRegisterLinkInLogin)

I hope that helps,
Alex
The topic has been locked.
Active Subscriptions:

None
10 years 7 months ago #40559 by Vero
Thank you, Alex!
The topic has been locked.