Hi,
sorry this is possible natively, but you can write a simple plugin that does this, follow these steps:
- Download, Install and enable our skeleton plugin (you will find this at the end of docs at
http://docs.easy-profile.com/index.php/article/triggers)
- Open file /plugins/jsn/skeleton/skeleton.php
- Delete samples functions: triggerFieldAvatarUpdate, triggerProfileUpdate
- write your function like this:
public function triggerProfileUpdate($user,&$data,$changed,$isNew)
{
if(in_array('fieldAlias',$changed))
{
$field_value=$data['fieldAlias']
$db=JFactory::getDbo();
$query='UPDATE your_table SET column='.$db->quote($field_value).' WHERE id='.$user->id;
$db->setQuery($query)->execute();
}
}
NOTE: This code is for example purpose, not tested and not supported