I made the temporary solution to this by removing !is_super_admin() in wpsc-support-tickets.php file:
/**
* Beginnings of the new permission system for 5.0
*/
function checkPermissions() {
if ( !is_super_admin() || (function_exists(‘current_user_can’) && !current_user_can(‘manage_wpsct_support_tickets’)) ) {
die(__(‘Unable to Authenticate’, ‘wpsc-support-tickets’));
}
}
And put like this:
/**
* Beginnings of the new permission system for 5.0
*/
function checkPermissions() {
if (function_exists(‘current_user_can’) && !current_user_can(‘manage_wpsct_support_tickets’)) {
die(__(‘Unable to Authenticate’, ‘wpsc-support-tickets’));
}
}
It’s a temp fix so dev can fix it. My support managers aren’t super admins so they fail in this check ??
Btw you had changed the permission to wpsct and now i have the two, wpsct and wpsc registered in my website.
Cheers.
Edit: I forgot to say that i love this plugin ??