如何隐藏/禁用SharePoint 2010托管元数据选择器中的“发送反馈”链接?

时间:2015-02-04 09:37:23

标签: sharepoint-2010

我正在尝试隐藏模块化窗口中的“发送反馈”链接,您可以从SharePoint 2010中的术语库中选择托管元数据。虽然我没有在术语商店属性中设置电子邮件地址,但链接是可见的

1 个答案:

答案 0 :(得分:0)

在您的母版页中添加javascript,

<script>
function pageLoad(sender, args) { 
  if (window.location.href.indexOf('termstoremanager.aspx') != -1) {
    //your code here to hide the send feedback
  }
}
</script>