-
AuthorPosts
-
laloma Friend
laloma
- Join date:
- May 2008
- Posts:
- 67
- Downloads:
- 4
- Uploads:
- 1
- Thanks:
- 2
- Thanked:
- 2 times in 1 posts
May 9, 2009 at 2:44 pm #141030Dear Sirs:
We are using JA Kulanite and Joomla Standard Mod login displaying “Forgot your password?” and “Create an account”.
We need to do two things:
1. Change the display order of “Forgot your password?” and “Create an account” text. Insted “Forgot your password?” “Create an account” we want “Create an account” “Forgot your password?”.
2. If noted both sentence are very near from from other, we want to separate them.
We have search and change code in website.com/joomla/modules/mod_login/tmpl/default.php without success.
How can we achieve these ?
Hope to hear from you soon.
Best regards,
Arvind Chauhan ModeratorArvind Chauhan
- Join date:
- September 2014
- Posts:
- 3835
- Downloads:
- 74
- Uploads:
- 92
- Thanks:
- 1240
- Thanked:
- 1334 times in 848 posts
May 9, 2009 at 4:09 pm #304156Please post your live url so that we can try to help you.
Regards
arvind.
Arvind Chauhan ModeratorArvind Chauhan
- Join date:
- September 2014
- Posts:
- 3835
- Downloads:
- 74
- Uploads:
- 92
- Thanks:
- 1240
- Thanked:
- 1334 times in 848 posts
May 9, 2009 at 11:26 pm #304171Dear Laloma,
I checked the site, i would like to have a look at the code also, so it is requested to edit your first post, choose require support from Support /Mods and add your site FTP and admin login details. So that we have have a look and advise / fix your problem.
Regards
arvind
environc Friendenvironc
- Join date:
- December 2012
- Posts:
- 173
- Downloads:
- 0
- Uploads:
- 33
- Thanks:
- 30
- Thanked:
- 2 times in 1 posts
June 22, 2013 at 5:28 pm #496581Hi, I would like to do the same too. Could you just advise what file to change?
Regards
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 24, 2013 at 9:35 am #496695If your site is using JA Kulanite Template you can change it via file: templates/ja_kulanite/html/mod_login/default.php
from
<div class="ja-login-links">
<a href="<?php echo JRoute::_( 'index.php?option=com_user&view=reset' ); ?>">
<?php echo JText::_('FORGOT_YOUR_PASSWORD'); ?></a>
<!--<a href="<?php echo JRoute::_( 'index.php?option=com_user&view=remind' ); ?>">
<?php echo JText::_('FORGOT_YOUR_USERNAME'); ?></a>-->
<?php
$usersConfig = &JComponentHelper::getParams( 'com_users' );
if ($usersConfig->get('allowUserRegistration')) : ?>
<a href="<?php echo JRoute::_( 'index.php?option=com_user&view=register' ); ?>">
<?php echo JText::_('REGISTER'); ?></a>
<?php endif; ?>
</div>change to
<div class="ja-login-links">
<?php
$usersConfig = &JComponentHelper::getParams( 'com_users' );
if ($usersConfig->get('allowUserRegistration')) : ?>
<a href="<?php echo JRoute::_( 'index.php?option=com_user&view=register' ); ?>">
<?php echo JText::_('REGISTER'); ?></a>
<?php endif; ?><a href="<?php echo JRoute::_( 'index.php?option=com_user&view=reset' ); ?>">
<?php echo JText::_('FORGOT_YOUR_PASSWORD'); ?></a>
<a href="<?php echo JRoute::_( 'index.php?option=com_user&view=remind' ); ?>">
<?php echo JText::_('FORGOT_YOUR_USERNAME'); ?></a>
</div>
Attached file is default.php file as demo site
+ And remove css script here
Open templates/ja_kulanite/css/template.css file
From
.ja-login-links {
display: none;
}change to
.ja-login-links {
/* display: none;*/
}
-
AuthorPosts
This topic contains 5 replies, has 4 voices, and was last updated by Ninja Lead 11 years, 4 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum