Hi,
sorry for late reply, unfortunately the Kunena - Easy Profile plugin does not allow this and this is not developed by us.
to make something like this you need to develop a small plugin by following these steps:
- Create a Easy Profile field called "Signature" (type: Textarea), alias should be "signature"
- Download, Install and Enable out Skeleton Plugin (you can find it at the end of page at
http://docs.easy-profile.com/index.php/article/triggers)
- Open file /plugins/jsn/skeleton/skeleton.php
- Remove Sample Functions: triggerFieldAvatarUpdate, triggerProfileUpdate
- Write a function like this:
public function triggerProfileUpdate($user,&$data,$changed,$isNew)
{
if($user->id && isset($data['signature'])){
$signature = $data['signature'];
$db = JFactory::getDbo();
$query = 'UPDATE #__kunena_users SET signature = '.$db->quote($signature). ' WHERE userid = '. (int) $user->id;
$db->setQuery($query);
$db->execute();
}
}
Now when you update the field called "Signature" then this function will copy the value also in Kunena table.
Docs about Easy Profile triggers at
http://docs.easy-profile.com/index.php/article/triggers
NOTE: This code is not tested and not supported, this is only for example purpose