Hi @jason-kickmouth,
Thanks for reaching us. Hope you are doing well.
Yes, it is possible for a user with editor access to use the plugin, please add the following code in your current theme’s functions.php file. See the screenshot: https://prnt.sc/205j9ak
add_filter('sp_wp_team_member_post_args', 'spt_show_to_editor');
function spt_show_to_editor( $args ) {
unset( $args['show_ui'] );
$editor_compatible = array( 'show_ui' => current_user_can( 'edit_others_pages' ) ? true : false );
return array_merge( $args, $editor_compatible );
}
Hope this helps.
Thank you.
Hi @jason-kickmouth,
This thread has been inactive for a bit, so I’m going to mark it as Resolved now. Please feel free to open a new one if you have any further questions.
Cheers!