• Hi!

    I really love your plugin, using it a lot! But I have one question about it, a little problem that occured the other day.

    So, I’m the admin of the WordPress site and I have a few users who have the Editor role. Probably they can’t see the Events section in the WordPress backend… Is this normal or did I do something wrong?

    Thanks in advance!

    Andy

    https://wordpress.org/plugins/really-simple-events/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Gotenks

    (@gotenks)

    Is it possible to receive a support answer pretty soon? I want to launch the website during this upcoming weekend, so I want all functionalities to be working 100% for my visitors =)

    Is there no solution for this question?

    Thanks for feedback, r

    A fast but non-upgrade fix:

    change first line in function “hc_rse_build_admin_menu” in plugin file “really-simple-events.php” from
    $user_capability = ‘manage_options’;
    to
    $user_capability = ‘hc_rse_manage_options’;

    Add this function to your themes file “functions.php”
    /*
    * change really simple event plugin
    * to make events visible to editors
    */
    function custom_hc_rse_add_caps() {
    $role = get_role( ‘administrator’ );
    $role->add_cap( ‘hc_rse_manage_options’ );
    $role = get_role( ‘editor’ );
    $role->add_cap( ‘hc_rse_manage_options’ );
    }
    add_action( ‘admin_init’, ‘custom_hc_rse_add_caps’);

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Visibility for Editors’ is closed to new replies.