latest Post

SharePoint 2016 : Hide Page Name of SharePoint Page

Introduction: In SharePoint 2013 / 2016 Whenever I create a new page, Page displays the corresponding name of the page at the top and sometimes it's very annoying and confusing for the end user. In my case, I do not want to display name on the page. when I checked SharePoint setting didn't found out of the box option to remove/hide, so finally I have decided to hide this using script or CSS.


Here I am going to share information how to hide page title.

  1. Hide Page Title using an embedded script: Please embedded code below in site page and save changes. Page Name will disappear from Page.                                                                    <script language="javascript">

    _spBodyOnLoadFunctionNames.push("HideBrandingsuite");

    function HideBrandingsuite()

    {

    document.getElementById('pageTitle').style.visibility = 'hidden';

    }

    </script>





About Yogendra Bhardwaj

Yogendra Bhardwaj
Yogendra has been in the IT services industry for almost 10 years and Microsoft certified Professional. He specialized in Service and Delivery management, Design and development of Microsoft technology based systems including Collaboration, also having experience of Automation and integration of different platform. He has got extensive experience with Microsoft technology stake for Office 365, SharePoint 2010/2013, and .net , C#. Also having hands on knowledge on Telerik Sitefinity, site core, Visual studio Test Manager, He has extensive experience for App Dev and App Support projects with supporting end to end SDLC process for Support and Maintenance projects.
Recommended Posts × +

1 comments:

VIanla said...

thanks, that works for me!

Comment