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
rajesh pennamrajesh pennam 

How to override the home page

Hello
 Can someone help in how to  override the homepage with cutsom VF page. So that when i click on home tab, my VF page should show up instead of standard home page

Regards
rajesh
Himanshu ParasharHimanshu Parashar
Hi Rajesh,

As far as I know you can't override the homepage but you can redirect from there if anybody click Home tab. Following steps should work for you.

1. Create a visualforce homepage component.
2. Add following code in your in above homepage component
window.parent.location.href='YOUR VF PAGE URL';


3. Add that homepage component to home page layout.


Thanks,
Himanshu