• Resolved olimax

    (@olimax)


    Hi
    How can I give the editor access to this
    It only shows up when logged in as ADmin
    THanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author 8Degree Themes

    (@8degreethemes)

    Hello there,

    Thank you for writing in.

    Do you mean you want this plugin to show up for editors with access to backend settings?

    Thanks

    Hi,

    I have the same problem actually.

    Did you manage to fix it ?

    Thanks

    Plugin Author 8Degree Themes

    (@8degreethemes)

    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

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