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; ?>