poorgeek
Forum Replies Created
-
Looks like this has been resolved with the Other Roles access in in 4.17 https://www.role-editor.com/user-role-editor-pro-4-17/
Awesome. Thank you for the quick answers.
For a plugin with the sole purpose to make it incredibly simple to manage roles and capabilities in WP, how come URE doesn’t expose any of its own capabilities so that site owners can grant access to specific non-admins? Is it just a matter of free vs pro versions?
Forum: Plugins
In reply to: [Co-Authors Plus] Only first assigned author can edit a private post?fyi, a coworker as submitted a pull request to address this issue: https://github.com/Automattic/Co-Authors-Plus/pull/226
Marking this as “resolved for me” since I’m using the forked code.
Forum: Fixing WordPress
In reply to: Displayed name drops out of Admin Bar in IE11Having the same problem in IE11 on Win7 (IE11 on Win 8.1 displays correctly). @aragornlesage is correct that the problem is with the admin bar and NOT with any theme.
For now, I’ve fixed the issue with the following in my theme which weirdly enough shows the entire name in IE11 rather than hiding the bit that drops down.
function fix_admin_bar() { echo ' <style type="text/css"> #wp-admin-bar-my-account > a.ab-item { overflow: hidden; } </style>'; } add_action( 'admin_head', 'fix_admin_bar' ); add_action( 'wp_head', 'fix_admin_bar' );
Forum: Plugins
In reply to: [Slideshow] Where can I submit patches?For starters, a user should be able to navigate to and use each of the buttons using only a keyboard. Each of the buttons must also be described in some way so that a blind user can find them.
I’m just about done updating the pause/play buttons to work this way and can send you a patch if you’d like to see what I mean.