Hello, we are using some custom code to load a user's avatar and name in various places in our site. However we are having a problem obtaining a link to the user's profile. We have used the following code to try to retrieve the url of a specific user's profile page:
$author = $article->created_by;
$link = ES::user($author)->getProfile();
Unfortunately, this code always generates the following url:
http://www.bsmartguide.com/SocialTableProfile
Can you tell me what the proper method is to retrieve the url to a specific user's profile?
Thank You.