如何在不影响网站中包含的列表的情况下隐藏共享点列表上的“!NEW”标记?

时间:2010-10-01 18:55:31

标签: sharepoint wss-3.0

有人知道是否可以隐藏附加到新SharePoint列表项的Title字段的“NEW”标签?

我有一个夜间脚本,可以将列表从一个站点复制到另一个站点列表,并且不需要显示新的。

2 个答案:

答案 0 :(得分:7)

如果您只是想从单个视图或页面而不是Web应用程序中的每个列表中删除它们,您可以使用S harePoint UI hackers everywhere - the Content Editor Web Part (CEWP)的最喜欢的工具以及javascript / jquery / css。

在这种情况下,它很简单,只需要CSS。

适用于SharePoint 2010

新图像显示为

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

因此,如果将以下样式添加到CEWP中(您必须使用HTML源视图,而不是富文本编辑器)。

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

新图片将被隐藏。

WSS3和SharePoint 2007

CSS有点复杂

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

答案 1 :(得分:3)

您可以将days-to-show-new-icon属性的值设置为0.但是,这会影响整个网站;你不能只为选定的名单做这件事。

更多信息:How to stop the !New tag from appearing when you add items to your SharePoint Team Services and SharePoint Services Web site