Hi @edival,
All of the capabilities for this plugin are tied to the manage_options
capability (an admin-only capability). In almost all places, this capability can be changed with a filter.
For example, if you want to editors to be able to access parts of this plugin, use this code snippet. (The manage_links
capability is only for Editors and Admins).
add_filter( 'yikes-mailchimp-user-role-access', 'yikes_mailchimp_change_user_role', 10, 1 );
function yikes_mailchimp_change_user_role( $cap ) {
return 'manage_links';
}
For more information about capabilities for different roles, check out this article: https://codex.www.ads-software.com/Roles_and_Capabilities.
Let me know if you need any help applying this custom code.
Thank you,
Kevin.