What would you like to know more about?

Filtering Connect Form

You can apply URL Filters when someone accesses the Need Connect Form. Use this to direct users to a specific portion of the form and/or hide one portion.

You can change the Need Connect form base URL with specific code to apply the filters you want. Pre-filter the URL to conveniently limit the form when directed to a specific target audience.

Note: In the following examples, the base URL displays as https://{your church domain}/needconnect. Make sure you're using the correct base URL for your church.

You can add two different URL parameters:

  1. Mode= [helpme] or [signup]
  2. Showmode= [True] or [False]

Consider the following scenarios:

Scenario 1

"I NEED Help" Form as Default, Both Forms Visible

A church wants the "I NEED help" portion of the form set as default, with both form options visible and available for users to toggle between (also the current base URL default).

  • Parameters:
    • ​mode=helpme
    • showmode=true

https://{your church domain}/needconnect?mode=helpme&showmode=true

Scenario 2

"I CAN Help" Form as Default, Both Forms Visible

A church wants the "I CAN help" portion of the form set as default, with both form options visible and available for user to toggle between.

  • Parameters:
    • ​mode=signup
    • showmode=true

https://{your church domain}/needconnect?mode=signup&showmode=true

Scenario 3

"I NEED Help" Form Only

A church wants the page specific to people with Needs. "I NEED help" form is the only portion visible.

  • Parameters:
    • ​mode=helpme
    • showmode=false

https://{your church domain}/needconnect?mode=helpme&showmode=false

Scenario 4

"I CAN Help" Form Only

A church wants to direct people to sign up to help others with Needs. "I CAN help" form is the only portion visible.

  • Parameters:
    • ​mode=signup
    • showmode=false

https://{your church domain}/needconnect?mode=signup&showmode=false