By Paul on Saturday, 27 September 2014
Replies 7
Likes 0
Views 731
Votes 0
Not sure if this is a request or a question about how to do something. JomSocial has this "Hello Me" module which I found useful for certain implementations. Is there anything similar for ES?
Hello Paul,

EasySocial has the "EasySocial Menu" module which is a module for the current logged in user
·
Saturday, 27 September 2014 01:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you. That is what I was looking for after not being able to adapt the EasyBlog biography module for use outside of EB specific pages.
·
Saturday, 27 September 2014 02:13
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Paul By the way what's wrong with the biography module?
·
Saturday, 27 September 2014 02:16
·
0 Likes
·
0 Votes
·
0 Comments
·
not sure if it is wrong or just the way it is designed but when I publish it on a page that is not specifically EasyBlog it does not display.
·
Saturday, 27 September 2014 02:21
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Paul,

The EasyBlog Custom Profile Field data is not stored in EasySocial hence I was advised by the Stackideas team to use the below code in case you are trying to display the data through the use of a Unique Key...

<?php require_once(JPATH_ROOT . '/components/com_easyblog/helpers/helper.php');
$eb = EasyBlogHelper::getTable('UNIQUE KEY');
$eb->load($user->id);
echo $eb->getBiography();
?>

I am hoping though that in the future we would be able to easily display the data in ES!!

Cheers
Avinash
·
Saturday, 27 September 2014 03:44
·
0 Likes
·
0 Votes
·
0 Comments
·
@Avinash, Awesome, thank you!
·
Saturday, 27 September 2014 04:11
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for sharing this Avinash Appreciate it very much!
·
Saturday, 27 September 2014 15:42
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post