Hide “Revert to Template” Status on the SharePoint 2010 Customized Pages

1.  The solution is to comment out the section in master page which shows the message. As per the solution, find the following section in master page and comment it out. 
<div id="s4-statusbarcontainer">
    <div id="pageStatusBar" class="s4-status-s1">
    </div>
</div>

OR


2. Set the div’s visibility to ‘none’ as shown below. So the div is not visible by default.


<div id="s4-statusbarcontainer" style="display:none">
    <div id="pageStatusBar" class="s4-status-s1">
    </div>
</div>

1 comment:

  1. This is so easy. Put your second solution in a txt file. Upload to SharePoint and link to to from a Content Editor (Content Link). Done!
    You can export this web part and import it and use it anywhere on anypagew

    ReplyDelete

Powered by Blogger.