• Just had an issue pop up. As Admin I can update the page fine but when my “Editor” tries to update the page, it doesn’t even show up. If I change her role to Admin, it works fine until I move her back to Editor. Also tried to back up to a previous revision but it said it could not find the revision and failed, even though it did restore it.
    Any Suggestions?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Dear Les,
    You might add this code to your theme:

    add_action( 'init' , 'my_custom_editor_capabilities' ) ;
    function my_custom_editor_capabilities() {
      $editor = get_role( 'editor' ) ;
      $editor->add_cap( 'edit_pages' ) ;
      $editor->add_cap( 'edit_published_pages' ) ;
    }

    By ‘pages,’ I assume you mean website pages, not blog posts. If you mean blog posts, replace ‘edit_pages’ with ‘edit_posts.’

    There are many capabilities , so you may want to change the code above.

    My best,
    Ryan

    Thread Starter LesTexas60

    (@lestexas60)

    Thanks Ryan, I have a feeling it was a corruption of the Page. I created a new page and trashed the old and everything is working again.
    I use Artisteer to create my Themes so I try not to get to much in code anymore.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Editor can not see/edit page’ is closed to new replies.