Title: User rolls
Last modified: March 15, 2018

---

# User rolls

 *  Resolved [nyks-barton](https://wordpress.org/support/users/nyks-barton/)
 * (@nyks-barton)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/user-rolls-2/)
 * Hi,
 * in our WP-site I’ve another person with the 2nd highest user roll (Redakteur /
   editor?).
    He should also see the statistics from Statify, but obviously, he 
   doesn’t see the statify-dashboard-widget. Is there an option to change this?
 * mfg
    Jan

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

 *  Plugin Support [Torsten Landsiedel](https://wordpress.org/support/users/zodiac1978/)
 * (@zodiac1978)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/user-rolls-2/#post-10077877)
 * You can allow all users to see the dashboard widget.
 * Please see our FAQ section for the filter documentation:
    [https://wordpress.org/plugins/statify/#how%20to%20change%20who%20can%20see%20the%20dashboard%20widget%3F](https://wordpress.org/plugins/statify/#how%20to%20change%20who%20can%20see%20the%20dashboard%20widget%3F)
 * All the best,
 *  Thread Starter [nyks-barton](https://wordpress.org/support/users/nyks-barton/)
 * (@nyks-barton)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/user-rolls-2/#post-10078003)
 * Oh, didnt saw that, thx.
 * Another issue: I read, that “Extended Evaluation” isnt available on the official
   library at the moment. Is there any other source to download that plugin?
 *  Plugin Author [Patrick Robrecht](https://wordpress.org/support/users/patrickrobrecht/)
 * (@patrickrobrecht)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/user-rolls-2/#post-10079657)
 * Releases of _Statify – Extended Evaluation_ are available at the [project’s GitHub repository](https://github.com/patrickrobrecht/extended-evaluation-for-statify/releases).
   The chart library used until version 2.4 is not compatible with the GPL, what’s
   why it was removed from the w.org directory.
 *  Plugin Support [Torsten Landsiedel](https://wordpress.org/support/users/zodiac1978/)
 * (@zodiac1978)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/user-rolls-2/#post-10082716)
 * [@nyks-barton](https://wordpress.org/support/users/nyks-barton/)
 * This Code could be interesting too. It enables the editor role to edit the dashboard
   widget:
    [https://gist.github.com/Zodiac1978/f8ee3f78ebbdca477c5fa0f4466a7b3b](https://gist.github.com/Zodiac1978/f8ee3f78ebbdca477c5fa0f4466a7b3b)
 * About the original question. You can return `true` just in the case the current
   user has a specific capability.
 * Then you just pick one capability from editors …
    [http://codex.wordpress.org/Roles_and_Capabilities](http://codex.wordpress.org/Roles_and_Capabilities)
 * … and it should only allow editors to see (and edit with the code above) the 
   dashboard widget:
 *     ```
       function statify_allow_editors_view_dashboard() {
           return current_user_can('edit_others_pages');
       }
       add_filter(
           'statify__user_can_see_stats',
           'statify_allow_editors_view_dashboard'    
       );
       ```
   
 * All the best,
    -  This reply was modified 8 years, 3 months ago by [Torsten Landsiedel](https://wordpress.org/support/users/zodiac1978/).

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

The topic ‘User rolls’ is closed to new replies.

 * ![](https://ps.w.org/statify/assets/icon-256x256.png?rev=2355063)
 * [Statify](https://wordpress.org/plugins/statify/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/statify/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/statify/)
 * [Active Topics](https://wordpress.org/support/plugin/statify/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/statify/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/statify/reviews/)

 * 4 replies
 * 3 participants
 * Last reply from: [Torsten Landsiedel](https://wordpress.org/support/users/zodiac1978/)
 * Last activity: [8 years, 3 months ago](https://wordpress.org/support/topic/user-rolls-2/#post-10082716)
 * Status: resolved