Modify "Your Account" Pop up box

GK User
Wed Jun 20, 2012 6:58 pm
Hey guys,

Just wondering how I would go about editing the "Your account" pop up box.
I would like to add more options in this box i.e. Change password, Submit a article etc but cannot find any module to edit.

Any suggestions will be appreciated.

Many thanks

Kyle
User avatar
Junior Boarder

GK User
Thu Jun 21, 2012 8:10 am
Hi Kyle,

It's impossible to do that as we load the content from login module.
User avatar
Platinum Boarder

GK User
Thu Jun 21, 2012 8:17 am
The module code you can find inside template directory. Please check template/html/mod_login.
User avatar
Platinum Boarder

GK User
Tue Jun 26, 2012 2:18 pm
Thanks guys, That file was exactly what I needed.

For anyone else looking to edit this box, All I done was to add two hyper links to the below section of code. It starts from <BR><BR>.

Code: Select all
<form action="index.php" method="post" id="login-form">
      <div class="logout-button">
           <?php if ($params->get('greeting')) :  ?>
                  <div class="login-greeting">
              <?php if($params->get('name') == 0) : {
               echo JText::sprintf('MOD_LOGIN_HINAME', $user->get('name'));
            } else : {
               echo JText::sprintf('MOD_LOGIN_HINAME', $user->get('username'));
            } endif; ?>
            </div>
            <?php endif; ?>      
<BR><BR>
<a href="url">:: Reset your password</a> <BR>
<a href="index.php?option=com_k2&view=item&layout=itemform&task=add&Itemid=113" target="_blank">:: Submit a article</a>
<BR><BR>
         
            <input type="submit" name="Submit" class="button" value="<?php echo JText::_('JLOGOUT'); ?>" />
      </div>
      <input type="hidden" name="option" value="com_users" />
      <input type="hidden" name="task" value="user.logout" />
      <input type="hidden" name="return" value="<?php echo $return; ?>" />
      <?php echo JHtml::_('form.token'); ?>
</form>
User avatar
Junior Boarder

GK User
Wed Jun 27, 2012 10:06 am
Well done, and thanks for sharing that. Feel free to let us know if you need any further help.

Cheers,
User avatar
Platinum Boarder


cron