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
Andrey BolkonskyAndrey Bolkonsky 

How to get VF page to show up on the New Record Screen

I have some simple VF pages I am adding to the page layout of a custom object. They show up on the detail page and they show up when I click edit, however they are not showing up on the new record screen when I click the New button.

The VF pages are the text for questions I am asking and the object fields are the answers the users select. So in short, having them show up on the Create New Record screen is the most important part. 

I would normally just make a read only text field with the question as the default text, but am trying to get away from doing this as it impacts my custom field limit.

What am I doing wrong?

Here is an exame of one of the pages I am inserting on the page layout.
 
<apex:page standardController="Custom_Object__c">
  <apex:pageBlock >
  <apex:outputText >Sample Text</apex:outputText>
  <br/>
  <apex:outputText >A. Sample Text</apex:outputText>
  <br/>
  <apex:outputText >B. Sample Text</apex:outputText>
  <br/>
  <apex:outputText >C. Sample Text</apex:outputText>
  <br/>
  <apex:outputtext >D. Sample Text</apex:outputtext>
  <br/>
  <apex:outputText >Sample Text</apex:outputText>
  </apex:pageBlock>
</apex:page>

 
JeanGrey52JeanGrey52
You should be able to set up an action override as described in this documentation (https://help.salesforce.com/articleView?id=sf.assign_action_overrides.htm&type=5).