• Resolved sarahsas

    (@sarahsas)


    Hello, is there a way to allow users with “editor” permissions access to add new testimonials? I cannot find any settings anywhere for this? Please advise?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Bayejid Ahmed

    (@bayejid00)

    Hi @sarahsas,

    Thanks for reaching us. Hope you are doing well.

    To make the plugin visible to the editor role users, please add the following code to your current theme’s functions.php file like the screenshot (https://prnt.sc/HU_951wh3k4a).

    // 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' );

    Hope this will help. Let us know if it works or not.

    Thread Starter sarahsas

    (@sarahsas)

    Perfect @bayejid00 thank you!

    Plugin Support Bayejid Ahmed

    (@bayejid00)

    Hi @sarahsas,

    Thanks for appreciating us. If you are happy with the plugin and support, please share your experience in the plugin’s review section.

    Your each and every word will motivate us to keep doing the hard work and provide the best support as promised.

    Have a great day!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Editor permissions’ is closed to new replies.