I’ve been following the site http://academy.bindtuning.com/customize-sharepoint-2013-and-office-365-suite-bar/ just so I can change the title from SharePoint (because no one here wants to see that) I have followed all of the instructions except for step 7 under SharePoint master pages. Â The Problem: Â the code <div id=”suiteBarRight”> doesn’t exist or at least cannot be found in the masterpage code. Â So I do not know where to post the remaining code to get this thing to work. Â Any ideas? Â Thank you.
Chip,
This worked for me (SPS 2013 EE On-Prem)
In SharePoint Management Shell (runas administrator)
$webApp = Get-SPWebApplication http://path/to/webapp
$webApp.SuiteBarBrandingElementHtml = “Your Text Here”
$webApp.Update()
-bill