Posted by Ken Anklovitch
2015-02-25

Hi Tom
I can't figure out how to remove the Addnew & Delete buttons on the tpl.staff.search page. In one unique adaptation of your incredible script I have only 4 records that I do not want anyone to add records to, change existing ones or delete. If I ever need changes I will make them myself in the table.
Thanks
Ken
Posted by Tom
2015-03-03

Open web/staff/app/cls_ps_staff.inc.php and find the following four blocks
case 'reg_init':
....
....
....
break;

case 'reg_inp':
....
....
....
break;

case "reg_done":
....
....
....
break;

case 'del_multi':
....
....
....
break;
Delete the four blocks to disable the add-new and delete features.