Good afternoon,
Our org currently uses SF Classic and I have setup our environment so that our users pretty much never see the SF Classic UI, they only see Skuid pages (including the global header and sidebar).
Is it possible to hide the Salesforce global header if we decided to upgrade to lightning?
We current use the following Visualforce code to override the standard pages in SF Classic.
<apex:page standardController="Contact" recordsetvar="a" extensions="skuid.Redirects" showHeader="false" sidebar="false" readonly="true" docType="html-5.0" action="{!IF(canUseSkuid,'',redirect)}" title="{!$ObjectType.Contact.labelPlural}"> <skuid:page page="Contact_Tab" />
</apex:page>