Change “SharePoint” text at the Top Left of SharePoint 2013 Ribbon

Introduction: In SharePoint 2013 you may have seen the text “SharePoint” at the top left corner of blue Ribbon. You can change this by setting the web application’s SuiteBarBrandingElementHtml property using Windows PowerShell.

1

This change will affect all the sites within the Web Application you choose and yes, you will see the changes on the site administration page as well.

There are three ways you might consider when replacing the SharePoint text on the blue Ribbon bar.

  1. Change SharePoint text only
  2. Change SharePoint text and link it
  3. Replace SharePoint text with logo and link it

So to achieve this you have to follow some steps:

Step 1: Go to SharePoint Server –> Find and Run Windows PowerShell as Administrator.

1

Step 2: Write the below script and execute. you can change it as per your wish.

i) Change SharePoint text only

1

1

1

ii) Change SharePoint text and link it

1

1

1

iii) Replace SharePoint text with logo and link it

1

1

1

Reference: Change SharePoint 2013 Title

Thanks for giving the specious time to read this blog. Click on like button if this blog helped you in any way or give your valuable comments for the betterment.. 🙂

Display the hidden SharePoint List/Library in Site Content

Introduction: Hi guys, In my previous post I have given you the detailed idea about how you can Hide SharePoint List/Library from Site Content.
Now if you want to make visible the hidden list/library again, you can do this using SharePoint Designer.

In this demo, I will display the hidden list Custom List 1 by following the some steps:

Before:

1

After:

1

Step 1: Open SharePoint Designer.

1

Step 2: Open Site and give the URL of the site. This will ask your credentials so you have to put your credentials.

Step 3: Click on All Files on the left menu and it may take some time. Your SP designer would be looking like below:

1

Step 4: Click on Lists –> you can see all your lists here –> Right Click on the list you want to show in browser and click on Properties. In this demo list name is Custom List 1.

1

Step 5: Uncheck the box Hide from Browser and save this.

1

Step 6: Now go back to your SharePoint Site –> Go to Site Content and you will see that the list with name Custom List 1 is visible again.

1

For your reference: Hide SharePoint List/Library from Site Content

Thanks for giving the specious time to read this blog. Click on like button if this blog helped you in any way or give your valuable comments for the betterment.. 🙂

Hide SharePoint List/Library from Site Content

Introduction: Hi guys, Today I am going to give you the idea about how you can hide your SharePoint List or Library from browser i.e. Site Content Page. To do this you have to use SharePoint Designer.

In this demo, I will hide the Custom List 1 so you have to follow some steps:

Before:

1

After:

1

Step 1: Open SharePoint Designer.

1

Step 2: Open Site and give the URL of the site. This will ask your credentials so you have to put your credentials.

Step 3: Click on Lists and Libraries on the left menu. Your SP designer would be looking like below:

1

Step 4: Click on the list/library you want to hide (i.e. Custom List 1) –> check the box “Hide from browser” and save this.

1

Step 5: Now go back to your SharePoint Site –> Go to Site Content and you will see that the list with name Custom List 1 is not visible here.

1

Note: This will hide the SharePoint List/Library from SharePoint Designer’s Lists and Libraries menu as well and you can not access the hidden list from this menu.

1

For your reference: Display the hidden SharePoint List/Library in Site Content

Thanks for giving the specious time to read this blog. Click on like button if this blog helped you in any way or give your valuable comments for the betterment.. 🙂

 

 

 

 

 

 

Enable Sign in as Different User in SharePoint 2013

Introduction: By default Sign in as Different User menu option is hidden in SharePoint 2013 and we have only two options (My Settings and Sign Out) under Current user name but sometimes it is required to give this option as well. So next, I would like to introduce a way to enable Sign as Different User option in SharePoint 2013 Site.

Before Change:                                               
1

After making some Changes:
1

Step 1. Locate this path in SharePoint Server system and open.

C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\CONTROLTEMPLATES

Step 2. Find the Welcome Asp.net User Control (Welcome.ascx) file and open this file in SharePoint Designer or notepad.

Step 3. Search for the XML node with id=”ID_RequestAccess”. This XML node will be looking like:

<SharePoint:MenuItemTemplate runat=”server” id=”ID_RequestAccess”
                 Text=”<%$Resources:wss,personalactions_requestaccess%>”
                 Description=”<%$Resources:wss,personalactions_requestaccessdescription%>”
                 MenuGroupId=”100″
                 UseShortId=”true”
                 Sequence=”300″
                 />
Just add one more XML node after this node.

<SharePoint:MenuItemTemplate runat=”server” ID=”ID_LoginAsDifferentUser”
Text=”<%$Resources:wss,personalactions_loginasdifferentuser%>”
Description=”<%$Resources:wss,personalactions_loginasdifferentuserdescription%>”
MenuGroupId=”100″
Sequence=”100″
UseShortId=”true”
/>

If everything is fine, your Welcome.ascx file will be looking like below:
1

Now you are done with everything.

Step 4. Go to your SharePoint Site and refresh it. Then open the drop down lookup and you will see that the new option Sign in as Different User would be there.
1

Thanks for giving the specious time to read this blog. Click on like button if this blog helped you in any way or give your valuable comments for the betterment.. 🙂