Posted by FRANCK
2015-02-25

Hello,

How to remove the icon MODIFY only for users?

thank you
Posted by Tom
2015-03-03

You can use the following condition on templates to excute code for users(non-admin) only.
if ( !$sys->IsAdmin() ) {
// The code placed here will be
// executed for non-admin only.
}