If I buy the full version, is it possible to set some fields to auto-populate during registration?
To do this, you need to develop custom plugin, follow these steps:
- Download, install and enable our Skeleton plugin (you can download at the end of this page
https://www.easy-profile.com/docs/44-triggers.html)
- Open file /plugins/jsn/skeleton/skeleton.php
- Remove sample functions: triggerFieldAvatarUpdate and triggerProfileUpdate
- Add this function:
triggerProfileUpdate($user,&$data,$changed,$isNew){
if($isNew){
// Make your code to auto-populate fields
// To auto-populate Easy Profile custom fields you can use this code $data['field_alias']='your-value'
$data['OurID']=$user->id;
$data['MemberDate']=$user->registerDate;
}
}
is it possible to import the new users into a specific User Group?
No, but you can set specific usergroup with 2 ways after import
1. Users are added into Default Registrered group, you can select this from Users->User Manager->Option->New User Registration Group parameter
2. After import all imported users have same Registered Date, so you can order by Registered date and with Batch Process add these into specific usergroup