function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
kev1977kev1977 

Remove Salesforce footer information from the bottom of a visualforce page

 

Hi, needed some assistance with removing salesforce footer information from a visualforce page

 

this is what I have written so far:

 

<apex:page standardController="Contact">
    
            <apex:outputField value="{!Contact.name}"/> <br/> <br/>
            <apex:outputField value="{!Contact.Title}"/> <br/> <br/>
            <apex:outputtext value="{!Contact.Account.Name}"/> <br/>
            <apex:outputField value="{!Contact.MailingCity}"/> <br/>
            <apex:outputField value="{!Contact.MailingState}"/> <br/>
            <apex:outputField value="{!Contact.MailingCountry}"/> <br/>
            <apex:outputField value="{!Contact.MailingPostalCode}"/> <br/>
            <apex:outputField value="{!Contact.Fax}"/> <br/>
      
</apex:page>

 

When I select the button that uses the code above, I get the following at the bottom of the page:

 

Copyright © 2000-2012 salesforce.com, inc. All rights reserved. | Privacy Statement | Security Statement | Terms of Use | 508 Compliance
Just need to know how to remove this, thanks
Starz26Starz26

hmm......

 

try: standardStylesheets="false"

 

Although I am not sure if this is a standard stylesheet (not in my org) or if you have code somewhere that create a custom footer....

 

 

Devendra@SFDCDevendra@SFDC

 

Hi,

 

I am not sure, but I dont think it would be possible, as we are using the services/platform of Salesforce.com

 

Thanks,
Devendra

Dmitry DanylchenkoDmitry Danylchenko
When I tried to use many <apex:include> or <apex:composition> tegs on one page SF the footers appiared under each component. I hide the footers with jQ:

<script type="text/javascript">
        $j = jQuery.noConflict();
        $j(document).ready(function() {
            $j('.bPageFooter').hide();
        });
</script>
san5san5
How to use this javascript in Visualforce page ? Any help appreciated...Thanks
Dmitro DanylchenkoDmitro Danylchenko
<apex:page>
 // reference jQuery directly like this
  <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
// or better download it https://jquery.com/download/ and reference it from static resources (in this case I put jQuery into zip)
  <script src="{!URLFOR($Resource.jQuery214, '/jquery-2.1.4.min.js')}"></script>
// see https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_resources_reference.htm
// than
<script type="text/javascript">
        $j = jQuery.noConflict();
        $j(document).ready(function() {
            $j('.bPageFooter').hide();
        });
</script>
</apex:page>
san5san5
Thanks @Dmitro Danylchenko . It works as expected .
Manu K MManu K M
Just add 

<style>
   .zen-pipedList {
        display:none;
    }
<style>
to the page. 
Alpit ShahAlpit Shah
<style>
.bPageFooter {display: none;}
</style>