User role issues
-
Not sure if anyone else had this problem, but on my site the forms weren’t showing up for my users with edit_posts capability. I noticed a change from v1.2.18 to v1.2.23 which affects those user roles.
So I changed this line (1240):
$capability = ( 'page' == $post_type ) ? 'edit_page' : 'edit_post';back to this:
$capability = ( 'page' == $post_type ) ? 'edit_pages' : 'edit_posts';That seemed to fix the issue. Hope that helps someone else!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘User role issues’ is closed to new replies.