Hello
We managed to get the Name of the user following instructions found in documentation.
We got it using...
require_once(JPATH_ADMINISTRATOR . '/components/com_easysocial/includes/easysocial.php');
$my = ES::user();
echo $my->getName();
How will we get the user ID to echo it somewhere?
Thank you!