Hello there,
Thank you for writing in.
We have fixed this issue on our new version updates. We have changed the plugin capability from administrator to manage_options so that you can provide plugin baceknd access to other user back-end as required..
Also, in order to display plugin access for editor dashboard you need to add below php code on your theme functions.php file for editor only.
/* Use Plugin Capability to Editor */
function set_capability_to_editor() {
$role = get_role( ‘editor’ );
$role->add_cap( ‘manage_options’);
}
/* End */
add_action( ‘admin_init’, ‘set_capability_to_editor’);
Thanks