× Joomla Facebook Connect support forum

Topic-icon How do I add " Forgot your password "

Active Subscriptions:

None
15 years 4 weeks ago #635 by pfunk
How do I add " Forgot your password " and " Forgot your user Name " under "register for this site" on the login module?

Thanks

Michael
The topic has been locked.
Support Specialist
15 years 3 weeks ago #645 by alzander
You can use template overrides to create your own jfbclogin view (will try to post details on this later, as many people want to alter the look of the login module in a variety of ways).

The other 'quick' option is to modify the /modules/mod_jfbclogin/tmpl/default.php file. Look for the line "Register for this site" at line 78, and you'll see where to add your code.
The topic has been locked.
Active Subscriptions:

None
15 years 2 weeks ago #741 by avush96
would you be kind to give this code?
tx
The topic has been locked.
Support Specialist
15 years 1 week ago #774 by alzander
The code depends on how you want it styled and what community software you may or may not be using. For example, you can look in the mod_login file and see the following lines:
modulesmod_logintmpldefault.php
<li>
<a href="<?php echo JRoute::_( 'index.php?option=com_user&view=reset' ); ?>">
<?php echo JText::_('FORGOT_YOUR_PASSWORD'); ?></a>
</li>
The topic has been locked.
Active Subscriptions:

None
15 years 1 week ago #784 by avush96
Hi,
I think it maks sens to use CB login modul.
if so, ( there is a long code over there) what sould I use ?
I show a part of the code that I think is relevant:
if ($show_lostpass) {
		$loginPost = cbSef("index.php?option=com_comprofiler&task=lostPassword");
		if ( $https_post /* && ! $isHttps */ ) {
			if ( ( substr($loginPost, 0, 5) != "http&#58;" ) && ( substr($loginPost, 0, 6) != "https&#58;" ) ) {
				$loginPost = $cblogin_live_site."/".$loginPost;
			}
			$loginPost = str_replace("http&#58;//","https&#58;//",$loginPost);
		}
		echo '<a href="'.$loginPost.'" class="mod_login'.$class_sfx.'">';
please check it if I miss something,
Avi
[url:20mg2kyo]http&#58;//derberliton.de/COMMUNITY/home.html[/url:20mg2kyo]
The topic has been locked.
Support Specialist
15 years 1 week ago #793 by alzander
The link on your page works, and the section of code you pasted here looks right. Nice work, and good luck!
The topic has been locked.