Pregunta

Tengo los siguientes dos problemas dentro de My Enterprise Wiki Plantilla: -

  1. No puedo cambiar el título de la página de "SharePoint" a "Mi nombre de empresa".
  2. También se presentarán las estadísticas de calificación cuando la página se cargue la primera vez, y tengo que actualizar la página para mostrarlos.

    He marcado los dos problemas en rojo como se muestra en la imagen de abajo: -

    ingrese la descripción de la imagen aquí

    br

¿Fue útil?

Solución

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)

Licenciado bajo: CC-BY-SA con atribución
scroll top