Currently I am using this:
if (current_user_can('editor') || current_user_can('administrator')){
however, everyone is able to edit the field when set like this..
if I change it however like this
if (!current_user_can('editor') || !current_user_can('administrator')){
nobody can edit it…
Any ideas?