Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • laloma Friend
    #141030

    Dear 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 Moderator
    #304156

    Please post your live url so that we can try to help you.

    Regards

    arvind.

    Arvind Chauhan Moderator
    #304171

    Dear 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 Friend
    #496581

    Hi, I would like to do the same too. Could you just advise what file to change?

    Regards

    Ninja Lead Moderator
    #496695

    If 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;*/
    }


    1. default.zip
Viewing 5 posts - 1 through 5 (of 5 total)

This topic contains 5 replies, has 4 voices, and was last updated by  Ninja Lead 10 years, 10 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum