If you want to add editor or shop manager access to the excellent Real Testimonials plugin from ShapedPlugins you’ll need to update your functions.php file. Please see the code snippet below courtesy of ShapedPlugins. This will give the WordPress editor or shop manager full access to add, edit, and configure the testimonial slider plugin.
// Give access to the Editors
function sp_tfree_show_to_editor($capability) {
$capability = 'edit_others_pages';
return $capability;
}
add_filter( 'sp_tfree_ui_permission', 'sp_tfree_show_to_editor' );











