This require customization’s/code changes because each type is different. If you need such services, guide: http://iwinter.com.hr/support/?page_id=1870
Hints related to user type if you are Developer:
http://iwinter.com.hr/support/?p=1533
http://iwinter.com.hr/support/?p=5830
And some hints to add new type:


You can use this to hide some fields it on frontend only:
http://iwinter.com.hr/support/?p=148
Or with custom php code like this you can hide any part of code for specific user type:
<?php if($this->session->userdata('type')=='ADMIN'): ?>
//This will be visible only for admin
<?php endif; ?>
Frontend property is added in application\controllers\frontend.php, line around 1181, code:
$this->estate_m->save_dynamic($dynamic_data, $insert_id);
After that you can execute your query, something like:
$this->db->where('id',
$user->id);
$this->db->update('user',
array('type' => 'AGENT'));
More details: http://www.codeigniter.com/user_guide/database/active_record.html
sanljiljan Support system