I can't see create account option - Login

GK User
Thu Jul 07, 2011 10:08 am
Login Module doesn't have the "Create account" option, I have already enabled user registration in Joomla. Please advise.
User avatar
Fresh Boarder

GK User
Mon Sep 05, 2011 11:06 am
Help,

In my sitep

On my site www.craff.org/portal/index.php is the same if the template is the "sporter", but if the "Financial Business" works well.

See images:

I need help.
User avatar
Junior Boarder

GK User
Thu Sep 08, 2011 6:54 pm
kevsade wrote:Login Module doesn't have the "Create account" option, I have already enabled user registration in Joomla. Please advise.


Hi

It's on purpose because you have gk_register module triggered by "Register" button.
Anyway if you want to use it also on Login module, please follow this instructions:

Open ../templates/gk_sporter/html/mod_login/default.php

replace this lines:

Code: Select all
<ul>
            <li>
                  <a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
                        <?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a>
            </li>
            <li>
                  <a href="<?php echo JRoute::_('index.php?option=com_users&view=remind'); ?>">
                        <?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a>
            </li>
      </ul>



with this ones:

Code: Select all
<ul>
            <li>
                  <a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
                        <?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a>
            </li>
            <li>
                  <a href="<?php echo JRoute::_('index.php?option=com_users&view=remind'); ?>">
                        <?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a>
            </li>
         <?php
            $usersConfig = JComponentHelper::getParams('com_users');
            if ($usersConfig->get('allowUserRegistration')) : ?>
         <li>
            <a href="<?php echo JRoute::_('index.php?option=com_users&view=registration'); ?>">
            <?php echo JText::_('MOD_LOGIN_REGISTER'); ?></a>
         </li>
         <?php endif; ?>
      </ul>


Cumprimentos / Cheers ;)
User avatar
Platinum Boarder

GK User
Thu Sep 08, 2011 7:24 pm
Seichinha wrote:
kevsade wrote:Login Module doesn't have the "Create account" option, I have already enabled user registration in Joomla. Please advise.


Hi

It's on purpose because you have gk_register module triggered by "Register" button.
Anyway if you want to use it also on Login module, please follow this instructions:

Open ../templates/gk_sporter/html/mod_login/default.php

replace this lines:

Code: Select all
<ul>
            <li>
                  <a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
                        <?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a>
            </li>
            <li>
                  <a href="<?php echo JRoute::_('index.php?option=com_users&view=remind'); ?>">
                        <?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a>
            </li>
      </ul>



with this ones:

Code: Select all
<ul>
            <li>
                  <a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>">
                        <?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a>
            </li>
            <li>
                  <a href="<?php echo JRoute::_('index.php?option=com_users&view=remind'); ?>">
                        <?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a>
            </li>
         <?php
            $usersConfig = JComponentHelper::getParams('com_users');
            if ($usersConfig->get('allowUserRegistration')) : ?>
         <li>
            <a href="<?php echo JRoute::_('index.php?option=com_users&view=registration'); ?>">
            <?php echo JText::_('MOD_LOGIN_REGISTER'); ?></a>
         </li>
         <?php endif; ?>
      </ul>


Cumprimentos / Cheers ;)


Boa noite,

Deveria ter gk_register em que posição?

No template Finnance não acontece esta situação, aparece a opção para fazer o Registo???!!!

Obrigado.
User avatar
Junior Boarder


cron