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
gilbert8109gilbert8109 

Removing Tools and Reports Sections from aTab homepages

Does anyone know if and how I can remove or hide the Tools and Reports sections (at the bottom of most tab homepages, e.g., click on Accounts tab and scroll down.  You'll see the sections I am talking about) from the view of all users?

 

Thanks

shillyershillyer

Those pages are not editable. You could create a Visualforce page that displays the enhanced list of that object. For instance, a page for Account could be:

 

 

 

<apex:page standardController="Account"> <apex:enhancedList type="Account" height="300" rowsPerPage="10" id="AccountList"></apex:enhancedList> </apex:page>

 

And then you can override the Account Tab with this page.

 

Hope that helps,

Sati