By Sinair P. Junior on Friday, 17 August 2018
Posted in General Issues
Replies 3
Likes 0
Views 720
Votes 0
Is it possible have remember password and username in login module?
Im using quick registration and one click checkout
Thanks in advance
Hey Sinair,

Do you mean the form highlighted here, http://take.ms/OaRnC ? You may add the necessary html codes in the file /components/com_payplans/templates/default/user/default_login.php

By the way, do take note that in PayPlans 4, it would be streamlined to a much better workflow, http://take.ms/3Kbyu
·
Friday, 17 August 2018 23:16
·
0 Likes
·
0 Votes
·
0 Comments
·
What is the html code that i need insert?
·
Friday, 24 August 2018 01:19
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You can refer how Joomla achieved this as you can see on here .../modules/mod_login/tmpl/default.php on codes below.

[gist type="php"]
<?php if (JPluginHelper::isEnabled('system', 'remember')) : ?>
<div id="form-login-remember" class="control-group checkbox">
<label for="modlgn-remember" class="control-label"><?php echo JText::_('MOD_LOGIN_REMEMBER_ME'); ?></label> <input id="modlgn-remember" type="checkbox" name="remember" class="inputbox" value="yes"/>
</div>
[/gist]
·
Friday, 24 August 2018 11:24
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post