Browsed by
Tag: SharePoint 2010

Remove “Recently Modified” from Quick Launch in SharePoint 2010

Remove “Recently Modified” from Quick Launch in SharePoint 2010

While messing around with SharePoint 2010 pages today, I remembered I wanted to find a way to remove the “Recently Modified” section from the Quick Launch area.  This was a very easy fix, as explained by John Dandison. Add a Content Editor Web Part to any section of the page and put this in the HTML: <style> .s4-recentchanges { DISPLAY:none; } </style> Now THAT was easy!  Sure you can also do this in SPD, but for me this was a…

Read More Read More

Hiding status bar messages in SharePoint 2010

Hiding status bar messages in SharePoint 2010

Often times, we may need to make changes to master page files in a SharePoint site to customize a layout, add styling, CSS, custom web parts, etc.  When the site was created using a default site template and content type, and your changes deviate from this, as you save you’ll be prompted with a warning basically saying “you do realize this is different from the original template, right?”.  However, when you open the page in a browser, your users will…

Read More Read More

Modify Title Logo link on master page

Modify Title Logo link on master page

So, as I’m building out our company intranet in SharePoint 2010, I didn’t like the fact that when I was nested several pages deep in a particular site, when I clicked on the logo on the top left of the page it took me to the root of that particular site.  I figured it would take me to the “home” page, or the root site collection.  Turns out this is handled in the master page of that website.  Here’s how…

Read More Read More

_controltemplates/TaxonomyPicker.ascx failed in SP2010

_controltemplates/TaxonomyPicker.ascx failed in SP2010

Our SharePoint 2010 started crying late last Friday, of course right when I wanted to leave, and first thing this morning I took a look at the server and found the following errors: Load control template file /_controltemplates/TaxonomyPicker.ascx failed… Fortunately, I’m not the only one who seems to have had this problem pop out of the blue.  I found a solution fairly quickly here.  To summarize, here’s what you do: On the server, navigate to C:program filescommon filesmicrosoft sharedweb server…

Read More Read More

Moving a SharePoint 2010 Web using PowerShell

Moving a SharePoint 2010 Web using PowerShell

One of the tasks I have at my workplace is to “migrate” SharePoint sites from one parent site to another as projects are closed out.  I wanted a solution to keep all of the business’s active project sites separate from their “archived” ones.  The problem arose when that “archive” has to happen.  You can’t just “move” a website in SP2010 (or at least, not in any way I’ve found or researched).  You can, however, export and import the site, so…

Read More Read More