开发SharePoint2013 的时候,系统里面有一个“SharePoint” 的logo,客户很少不满意,我们的系统不能出现产品的名称,如下图:

              MOSS 2013研究系列---修改默认Logo

 

 

 

 

 

咋么修改呢,咨询了广大网友,给出了一个解决方案:

  1. launch SharePoint 2013 Management Shell in Admin mode
  2. type the following: $app = Get-SPWebApplication -Identity http://yourwebsite.com
  3. hit enter and next type this: $app.SuiteBarBrandingElementHtml = "<div class='ms-core-brandingText'>YOUR branded name HERE</div>"
  4. hit enter and next type this: $app.Update()

既然能够通过PowerShell命令行修改,估计是一个控件或者DelegateControl ,根据这个方向,去SharePoint的文件夹,果然很容易的就找到了这个地方,里面有一个DelegateControl控件<SharePoint:DelegateControl >XXXXX系统</div>,或者直接用图片替换,呵呵。

   修改的效果就不显示了,可以自己随心所欲了。

 

 

相关文章:

  • 2021-04-01
  • 2021-11-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
  • 2021-12-31
  • 2022-12-23
  • 2022-01-01
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案