Skip to main content

SharePoint Ninja

Go Search
SharePoint Ninja
  

TechElixir > SharePoint Ninja > Posts > Unhiding the Visual Upgrade in SharePoint 2010
Unhiding the Visual Upgrade in SharePoint 2010
If you went ahead and clicked the "Hide Visual Upgrade" button it is kind of pain to get the visual upgrade option enabled. I had to jump into powershell and run the following comands to turn it on for a web site (press enter after each line and replace http://yoursite with the url of your sharepoint site).
 
$web = Get-SPWeb http://yoursite
$web.UIVersionConfigurationEnabled = 1
$web.Update()
 
You shoud now be able to see the Visual Upgrade options under Title, Description, and Icon under site settings.
 

Comments

There are no comments yet for this post.