The current page has been customized from its template. Revert to template SharePoint

In this SharePoint tutorial, we will discuss how we to hide the message “The current page has been customized from its template. Revert to template” which comes when you modify a SharePoint page.

Most of the time, if you have modified the pages using SharePoint designer, then the warning message will appear.

the current page has been customized from its template. revert to template
the current page has been customized from its template. revert to template

The current page has been customized from its template. Revert to template

We can easily hide this message by using a piece of CSS code.

The id for this message is “DeltaPageStatusBar“.

First, edit the page and then add a content editor web part or script editor web part (for SharePoint 2013) (Click on Insert and then Web Part and then select Media and Content category and then add Script Editor web part).

Then write the below CSS code:

<style>
#DeltaPageStatusBar { display: none; }
</style>

Now save the page, the message “The current page has been customized from its template. Revert to template” will not appear.

You may like the following SharePoint tutorials:

Here we learned how to hide The current page has been customized from its template. Revert to template message from a SharePoint page.

>