-1

I have logged in to sitecore through administrator account. I have a page in my site if press 'experience editor' or preview button,editor ribbon is not displaying. I am new to sitecore, Is that a permission issue am facing?

Marek Musielak
  • 26,832
  • 8
  • 72
  • 80
Keerthi Kumar
  • 59
  • 1
  • 1
  • 11

2 Answers2

4

If you see only header of the ribbon like that: enter image description here

Click on the arrow on the right. You should see all the options:

enter image description here

If you don't see even the header, there must be some errors on the console.

Marek Musielak
  • 26,832
  • 8
  • 72
  • 80
0

This specifically applies to MVC implementations and could apply to Webforms as well. Please make sure your layout razor cshtml file has valid HTML markup skeleton in place. Please make sure at the very minimum your page is formatted like this:

@using Sitecore.MVC

<html>
    <body>
         @Html.Sitecore().Etc...
         etc...
    </body>
</html>

This should eliminate the big chunk of JSON on top and enable all page editor UI elements.

Steven Zhao
  • 101
  • 7