Skip to main content

Is it possible to create a load page that will display in the detail portion when the site is first entered?  I have a parent page and detail page (displayed in a Page Include component).  I’d like to have a unique page displayed when the user first enters the site…

First time for the first time the user enters the site?

  1. Add a boolean field to the User object called “Has Visited”.

  2. Use this to conditionally render a Page Include with the Page Include for first timers.

  3. Set the “Has Visited” value to true upon loading the first timers page.

  4. Then use another Page Include for users that have the “Has Visited” set to true to display the normal page.