Aba de desenvolvedor no Sitecore: O que é, e como habilitá-la?

No Sitecore há uma aba muito util na visão de editor de conteúdo(Content Editor), que por padrão vem desabilitada: Developer Tab(ou aba do desenvolvedor)

O que é a Developer Tab?
É uma aba que contém alguns atalhos para funcionalidades como, criação de templates, ir para a definição do template, serialização de itens, regeração de indices, entre outras, que são muito úteis ao implementar um website. Veja abaixo os botões da aba:
post1

Legal! Mas como posso habilitá-la?
É fácil. Clique com o botão direito do mouse na área cinza escura, onde as abas estão e clique em Developer, conforme mostra a figura abaixo:
post2

Quando você fizer isso verá que a aba Developer aparecerá ao lado da aba “My Toolbar”
post3

Aproveite!
Clique aqui para ver o mesmo post em inglês

Sitecore – How to change the default item on the Content Editor view?

A common request I have seen while working with Sitecore, specially when it comes to multi-site implementation is how to change the default item on the Content Editor view.

It’s easy actually. First you need to know that by default the Home item is selected as shown bellow.

home

The start item is defined on the contentStartItem attribute of the shell site definition. This site definition can be found on the Sitecore.config file located under App_Config. By default the value is “/Home”:

<site name=”shell” rootPath=”/sitecore/content” contentStartItem=”/Home”

Using the example above let’s say that the item NewHome is the one I want to have selected when opening the content editor by default. To do that one might think “well I can just update the file on the Sitecore.config right”?

Yes. But not so fast. Don’t forget that if you go towards that path you will be breaking Sitecore’s upgrade path as this is defined on a Sitecore’s configuration file.  What I would suggest you to do is create a new configuration file and patch that property. If you need to upgrade Sitecore this doesn’t get lost on the upgrade process.

To patch that property just create a new configuration file under the App_Config/Include folder where you can patch that attribute as shown bellow:

newHome

That’s it. Open the content editor and you will notice that the default selected item has changed:

newhomeContentEditor

To see this post in portuguese click here