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