Page 1 of 1

[Solved] Change My Settings not available

Posted: Wed Aug 11, 2010 6:30 pm
by pgraber
Hi,

I use CMSMS 1.8.1 (Mankara-SVN6488-Fr) with FrontEndUsers, CustomContent, SelfRegistration and other modules, all at their last edition.
The Hostserver works with Apache 2.2.3, PHP 5.2.6 and Mysql 5.0.77.

No problem to connect (login).

But, as loggedin, the user only sees "Sign Out" link.

I think I have painfully searched everywhere, read and re-read FEU docs ...

How can I do to make the link "Change My Settings" appear on the logout page ?

Many thanks for your help!

Pierre

Re:Change My Settings not available

Posted: Wed Aug 11, 2010 7:26 pm
by pgraber
Solved with a new logout template:

Code: Select all

<!-- Logout form template -->
 {$startform}
  <p>{$prompt_loggedin} {$username}</p> 
  <p><a href="{$url_logout}" title="{$mod->Lang('info_logout')}">{$mod->Lang('logout')}</a></p>
  <p><a href="{$url_changesettings}" title="{$mod->Lang('info_changesettings')}">{$mod->Lang('prompt_changesettings')}</a></p>
 {$endform}
<!-- Logout form template -->
Pierre