Skip to main content

Forms & FAQs Template

This page instructs your customers on how to work with you.

Read more about this page here.

When to use

This is a required page and a system page. Various other system webpages and emails link to this page.

How to use

New Account Applications Section

By default, this section includes links to four types of new account applications:

  • C.O.D. Account Application
  • Net 15 Account Application
  • Net 30 Account Application
  • Student Account Application

You can hide the account applications you don't use like the Net 15 and/or the Student Account Application.

To hide or unhide an application, edit the CSS in the Style field on the Head tab.

Pick one of these code blocks and add to the Style field in the Head tab:

/** This hides the Net 15 Application only */
#newAccountApplication a:nth-of-type(2) {
display: none;
}

/** This hides the Net 15 Application and the Student Application */
#newAccountApplication a:nth-of-type(2n) {
display: none;
}

/** This hides all applications except the COD Application */
#newAccountApplication a:nth-of-type(n + 2) {
display: none;
}

/** This hides all applications */
#newAccountApplication {
display: none;
}

Forms Section

The Forms section contains your new account applications and other forms like your rental agreement and credit one-sheet. Some prop houses include example COIs and W-9s here.

Currently, these forms are stored in your Document Settings. They must be set to Public for them to appear here.

For your Rental Agreement, make the Document ID rental-agreement so that it connects to your New Account Applications correctly. Doing so will also allow you to use the URL https://yourdomain.com/rental-agreement to access this PDF.

Frequently Asked Questions Section

You should be proficient with this Markdown Cheatsheet before editing.

For advanced usage, see our Advanced Markdown Guide.

This section explains your policies in a question and answer format.

Use H3 tags for each question. To use an H3 in Markdown, start the line with three hashtags and a space: ### How do I...?.

Each Propcart Pro website comes with a default set of FAQs on this page that you can edit to match your own business policies.

Data Structure

Title
"Forms & FAQs" is the default and most common title.

Body
Use Markdown to format your content and add photos and YouTube videos.

For advanced usage, see our Advanced Markdown Guide.

Examples