Hi,
if there is no integration between Easy Profile and Jvitals Agora Pro you can considering these alternatives:
1. if Jvitals Agora Pro have integration with Jomsocial you can try our to install Jomsocial bridge (here docs:
https://www.easy-profile.com/docs/43-jomsocial-bridge.html) and set Agora to catch jomsocial avatar and profile link.
2. You can make a simple plugin to sync avatar when user update his image, try to see this docs:
https://www.easy-profile.com/docs/44-triggers.html
- Download, install and enable our skeleton plugin, you can download from
https://www.easy-profile.com/docs/44-triggers.html
- open file /plugins/jsn/skeleton/skeleton.php
- remove samples functions: triggerFieldAvatarUpdate, triggerProfileUpdate
- add you function like this:
triggerFieldAvatarUpdate($user,&$data,$changed,$isNew){
$db=JFactory::getDbo();
$query='UPDATE #__your_table SET avatar=' . $db->quote( $data[ 'avatar' ] ) . ' WHERE user_id='. ( int ) $user->id;
$db->setQuery($query)->execute();
}
NOTE: this code is not tested and not supported, this is only for example purpose.