Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Question
Sunday, March 17, 2013 2:07 PM
How to get rid of the status bar message "Checked in and ready to preview by autorized users"?
keren tsur
All replies (4)
Monday, March 18, 2013 10:01 AM ✅Answered
No it's ok the publishing remove that message as I thought :)
keren tsur
Sunday, March 17, 2013 3:41 PM
Depends on your role and if a workflow has been configured for your Pages library:
A: Start a workflow to get the page approved: Click the Publish tab in the page's ribbon, click Submit, click Submit, fill out the form.
B: Click the Publish tab in the page's ribbon, click Submit and Publish
or: Go to the Pages library (Site Actions, View All Site Content, Pages), click the document's dropdown menu and click Publish
or: checkmark the document and in the Documents ribbon, click Publish
A page goes thorugh these messages when edited:
Status: Checked out and editable. Publication Start Date: Immediately
Status: Checked in and viewable by authorized users. Publication Start Date: Immediately
Mike Smith TechTrainingNotes.blogspot.com my SP customization book
Monday, March 18, 2013 7:29 AM | 3 votes
But after click Publish Tab and Publish, this message should disappear, isn't it so? (also when the administrator is logged on)
keren tsur
Monday, March 18, 2013 8:14 AM
Hi keren,
I understand that you want to hide/remove the status bar, then
1.Open your site in SharePoint Designer 2010
2.Open your default master page found in All Files->_catalogs->master page, often times this will be v4.master
3.Look for the following lines of html:
<div class=”s4-notdlg”>
<div id=”s4-statusbarcontainer” class=”s4-notdlg”>
<div id=”pageStatusBar” class=”s4-status-s1″>
</div>
</div>
</div>
4.Just above this block of code, add the following:
<style type=”text/css”>
#pageStatusBar {
display: none !important;
}
</style>
5.Save and publish the master page.
For more information, see
http://blog.pixelmill.com/520/remove-hide-the-status-bar-in-sharepoint-2010/
http://krishnanandula.wordpress.com/2011/01/25/hide-yellow-status-bar-sharepoint-2010/
Best Regards.
Kelly Chen
TechNet Community Support