Open this file in your editor:
components/com_oneclickregistration/tmpl/default.php
Now do a search for:
if(empty($tempdatacookie)) {
You will see a code similar to this:
| Code: |
if(empty($tempdatacookie)) {
echo '<p>'.JText::_("DEAR").'<b> ' . $user->name . '</b></p><p>'.JText::_("ALREADYREGISTERED").'</p>';
echo '<p><br /><b>'.JText::_("USERNAME").':</b> ' . $user->username . '</p>';
echo '<p>'.JText::_("POSSRESETPASS");
echo ' '.JText::_("GOTORESET").' <a href="index.php?option=com_users&view=profile&layout=edit">'.JText::_("LOSTPASS").'</a> '.JText::_("PAGE").'.</a></p>';
} else {
|
Everything in between the if and the else is what is showed when members are logged in. If you delete all code in between the if and the else you will see nothing at all when logged in. Offcourse you can change the code so it displays whatever you want it to display.