문제

나는 기업 위키 템플릿 내에 다음 두 가지 문제가있다 : -

  1. "SharePoint"에서 "내 회사 이름"으로 페이지의 제목을 변경할 수 없습니다.
  2. 또한 등급 통계가 처음으로 페이지로드를 할 때 나타나지 않으며 페이지를 새로 고치면 페이지를 새로 고침해야합니다.

    아래의 이미지와 같이 두 가지 문제를 빨간색으로 표시했습니다. -

    여기에 이미지 설명을 입력하십시오

    br

도움이 되었습니까?

해결책

The SharePoint text highlighted is not the "Title of the Page" but rather the branding text for the whole Web Application.

To change just the text you can use PowerShell (but note that this will, as said, impact the whole Web Application):

$webApp = Get-SPWebApplication -Identity "http://URLtoPage"
$webApp.SuiteBarBrandingElementHtml = '<div class="ms-core-brandingText">YOUR TEXT</div>'
$webApp.Update()

As you can see, you ar passing in the complete <div> element for the text, so you could for example render a picture, create a link, add some css class or what ever you need.

By using for example some jQuery you could make the text change based on the current page.

Here is a great link for modifying stuff in the Suite Bar (the blue bar on top of the page)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top