如何编辑 SharePoint 2007 主要全局面包屑链接

发布于 2024-10-19 22:00:05 字数 269 浏览 5 评论 0原文

我需要能够编辑 SharePoint 2007 网站中主要全局面包屑链接的文本和相应链接。

这是页面左上角的链接,旨在将用户引导回主站点的根目录。这不是选项卡之一。

我们认为该站点最初是在某些开发环境中创建为子站点,然后复制为新安装的主站点。尽管该站点具有完全不同的 URL 和名称,但主面包屑链接仍然具有该子站点的名称并指向它。

我没有看到任何现成的方法来管理此链接,所以我希望有人知道一种方法来做到这一点。最好不要直接接触内容数据库。

有什么想法吗?谢谢!

I need to be able to edit the text and corresponding link of the primary global breadcrumb link in a SharePoint 2007 site.

This is the link at the top left of the page that is intended to point the user back to the root of the primary site. This is not one of the tabs.

We believe this site was originally created as a subsite in some dev environment, then copied over as the primary site of a new installation. The primary breadcrumb link still has the name of that sub-site and points to it as well, despite this site having a completely different url and name.

I don't see any out of the box way to manage this link, so I'm hoping someone knows of a way to do this. Preferrably, without touching the content database directly.

Any ideas? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感受沵的脚步 2024-10-26 22:00:05

在我们的 TFS 服务器上的 C:\Program Files\Common Files\microsoft shared\Web Server Extensions\12\TEMPLATE\GLOBAL\default.master 中找到母版页。

将第 42 行:替换

<asp:ContentPlaceHolder id="PlaceHolderGlobalNavigationSiteMap" runat="server">

<asp:ContentPlaceHolder id="PlaceHolderGlobalNavigationSiteMap" runat="server" 

visible="false">

然后隐藏最顶部的导航栏。

Found the master page in: C:\Program Files\Common Files\microsoft shared\Web Server Extensions\12\TEMPLATE\GLOBAL\default.master on our TFS server.

Replaced line 42:

<asp:ContentPlaceHolder id="PlaceHolderGlobalNavigationSiteMap" runat="server">

with

<asp:ContentPlaceHolder id="PlaceHolderGlobalNavigationSiteMap" runat="server" 

visible="false">

Then the top most navigation bar is hidden.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文