[SOLVED] Where's the REGISTER button ?

GK User
Thu Oct 06, 2011 4:28 pm
Hi.

The login module allows login with facebook and provides the regular joomla login for the user.
How about the register button? where is it ?

I've checked everything and can't find it.

If i create a K2 Login module, theres the register button. But on the regular login module, there isn't.. am i making anything wrong ?

thanks
User avatar
Fresh Boarder

GK User
Thu Oct 06, 2011 4:37 pm
See this link
Code: Select all
https://www.gavick.com/forum/136-myfolio/91974-where-is-qcreate-accountq-option-under-quser-areaq.html
User avatar
Platinum Boarder

GK User
Wed Oct 12, 2011 5:29 pm
It worked. Thanks Norman ;)
User avatar
Fresh Boarder

GK User
Tue Jan 10, 2012 1:52 pm
normanUK wrote:See this link
Code: Select all
https://www.gavick.com/forum/136-myfolio/91974-where-is-qcreate-accountq-option-under-quser-areaq.html


Hi Norman

I have the same problem but the link does not seem to work. Can you please advise on where to set the user registration?

thank you

corne
User avatar
Fresh Boarder

GK User
Tue Jan 10, 2012 1:59 pm
Edit file
Code: Select all
/templates/gk_myfolio/html/mod_login/default.php

Change line 66 which is
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>

to below
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>


See you around...
User avatar
Platinum Boarder

GK User
Tue Jan 10, 2012 2:23 pm
oh my greatness you saved my skin!!!!! it worked perfectly.

do you know anything about the Facebook connect plugin that does not work at all in the login mod as well?
User avatar
Fresh Boarder

GK User
Thu Jan 12, 2012 12:25 pm
No problem at all, I haven't tried facebook logins at all. I ll have a look at it when i get time.

See you around...
User avatar
Platinum Boarder


cron