Hi,
we provide only Avatar & profile link integration, but you can do this with 2 ways:
1. Edit EasyBlog template file to thos Easy Profile bio field, (you can retrieve Easy Profile data with our API
http://docs.easy-profile.com/index.php/article/jsnuser-object)
2. Sync Easy Profile bio with EasyBlog bio.
You can create a simple plugin based on our Skeleton plugin to copy Easy Profile Bio into EasyBlog user table, follow these steps:
- Download, Install and Enable our skeleton plugin (you can download it from
http://docs.easy-profile.com/index.php/article/triggers)
- Open file /plugins/jsn/skeleton/skeleton.php
- Remove samples functions like: triggerFieldAvatarUpdate and triggerProfileUpdate
- Write your function like:
public function triggerProfileUpdate($user, &$data, $changed, $isNew)
{
$ep_bio=$data['bio_field_alias'];
$db=JFactory::getDbo();
$query='UPDATE #__easyblog_users SET biography='.$db->quote($ep_bio).' WHERE id='. (int) $user->id;
$db->setQuery($query);
$db->execute();
}
This will copy from Easy Profile field "bio_field_alias" to EasyBlog user table.
Docs About our triggers at
http://docs.easy-profile.com/index.php/article/triggers