Hi,
in Easy Profile component I added a custom text property to users. When the user log in to the site I would like to access this custom field with php code like this:
$user =& JFactory::getUser();
$email = $user->get( 'email' );
$customfiled = $user->get( 'customfiled ' );
but it does't work, can you help me?