How to hide the tag "! NEW" in the sharepoint list without affecting the lists contained on the site?

Does anyone know if it is possible to hide the "NEW" label, which is added to the Title field of the new SharePoint list item?

I have a nightly script that copies a list from one site to another list of sites and does not need to update NEW.

+6
sharepoint
source share
2 answers

If you just want to remove their image from one view or page, and not every list in a web application, then you can use the favorite tool S harePoint UI hackers around the world - the web part of the content editor (CEWP) along with javascript / jquery / css.

In this case, simple, CSS only is required.

For SharePoint 2010

The new image is displayed like this

<IMG class="ms-newgif" title="New" alt="New" src="/_layouts/1033/images/new.gif"> 

So, if you add the following style to CEWP (you need to use HTML Source View, not Rich Text Editor).

 <style> IMG.ms-newgif {display:none;} </style> 

The new image will be hidden.

WSS3 and SharePoint 2007

CSS is a bit trickier

 <style> TABLE.ms-unselectedtitle TD.ms-vb IMG {display:none;} TABLE.ms-selectedtitle TD.ms-vb IMG {display:none;} </style> 
+7
source share

The days-to-show-new-icon value can be set to 0. However, this affects the entire website; You cannot do this only for selected lists.

More information: How to stop a new tag that appears when you add items to a SharePoint Team Services and SharePoint Services website

+3
source share

All Articles