In this post we will discuss how we can hide DeltaSuiteLinks like NewsFeed, SkyDrive, Sites in SharePoint 2013. In SharePoint 2013 a new Suite bar has been added that displays NewsFeed, SkyDrive and Sites links.
Also you can check out:
Here we will discuss three ways to hide that.
Solution-1:
SharePoint 2013 provides a delegate contol for Suite links and that is there in the master page. So we need to hide that delegate control from the master page.
The delegate control is
<SharePoint:DelegateControl id="ID_SuiteLinksDelegate" ControlId="SuiteLinksDelegate" runat="server" />
Once you will remove that you will not able to see those links.
Solution-2:
We can also use JavaScript to hide the links. we can use a content editor web part or script editor web part to add the below code.
<script language=”javascript”>
_spBodyOnLoadFunctionNames.push(“HideBrandingsuite”);
function HideBrandingsuite()
{
document.getElementById(‘ctl00_DeltaSuiteLinks’).style.visibility = ‘hidden’;
}
</script>
Solution-3:
You can also hide that through css. You can add the below code in css.
#suiteLinksBox {
display:none;
}