Hello,
I want to see the joomla username you have entered your resume
If you use this code works , but it changes the login session :
echo JText::_("JS_JOB_RESUME_ADD_BY").": ";
$tuser = & JFactory::getUser();
$tuser->load($resume->uid);
echo $resume->name;
echo "</span>";
I tried to use this , the session does not change but I see only the user id:
echo JText::_("JS_JOB_RESUME_ADD_BY").": ";
echo $resume->uid.' '.$resume->username;
Can someone please help me?
Many Thanks