• Resolved jarred191djp

    (@jarred191djp)


    The documentation for this plugin suggests:

    Sticky List adds two capabilities that can be used to allow users to edit and delete entries in the list. These are stickylist_edit_entries and stickylist_delete_entries. Users/roles with these capabilities will be able to edit/delete entries in the list.

    However in the custom capabilities list, I can only find:
    -gravityforms_stickylist
    -gravityforms_stickylist_uninstall

    I would like to restrict users who can edit and delete entries from the sticky list and currently cant find the capabilities to do this.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author fried_eggz

    (@fried_eggz)

    Hmm. I’ll look into this and post back.

    Plugin Author fried_eggz

    (@fried_eggz)

    Ahh, now I understand what you mean.

    The capability is not selectable in a user role editor plugin. You have to manually add it to a user. You can either do this using you role editor plugin (there are many) or using code

    $role = get_role( 'author' );
    $role->add_cap( 'stickylist_edit_entries' );
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Unable To Find Custom Capabilities’ is closed to new replies.