-
Notifications
You must be signed in to change notification settings - Fork 0
Contact Forms
Description:
There are three contact forms: Request for Patients, Request for Volunteers, and General Inquiry.
All three forms are displayed on the Contact Us page.
The site admin can control which of the forms are displayed via Custom Fields for each form. There are visible when the Contact Us page is edited.
For developers:
The forms are customized via the Contact Forms 7 plugin. This plugin must be installed and enabled in the user's Wordpress installation.
Additionally, the forms themselves are saved in an XML file, and must be imported via Tools -> Import -> WordPress Importer.
After import, ensure that the e-mail addresses listed for all three forms are correct and up-to-date.
Navigation between the three forms is accomplished using the nav-tabs feature in Bootstrap.
The current code for the three forms is:
Request for Patients form code:
<div class="container-fluid m-0">
<br>
<strong>Basic Information:</strong>
<div class="row">
<div class="col"><label>Name:<br> [text* cf-name] </label></div>
<div class="col"><label>Organization:<br> [text org] </label></div>
</div>
<div class="row">
<div class="col"><label>Phone Number:<br> [tel phone] </label></div>
<div class="col"><label>Email Address:<br> [email* email] </label></div>
</div>
<div class="row">
<div class="col"><label>Website Link:<br> [text website] </label></div>
</div>
<br>
<strong>Request Information:</strong>
<div class="row">
<div class="col"><label>Number of Patients/Clients needed:<br> [number num-pat min:1] </label></div>
<div class="col"><label>Aim/Learning Objectives:<br> [text aim] </label></div>
</div>
<br><label>Please select the type of engagement that best reflects your activity:</label>
[checkbox activity-type use_label_element "Patients create learning material: patients involved in creating learning materials used by faculty." "Standardized or Volunteer Patients: standardized volunteer patients in a clinical setting teach and assess communication and clinical skills." "Patient shares their experience: patient shares their experience with students within a faculty-directed curriculum." "Patients teach & assess students: patient-teacher(s) are involved in teaching or evaluating students." "Patients as equal partners: patient-teacher(s) as equal partners in student education, evaluation and curriculum development." "Institutional decision making: patients involved at institutional level in addition to sustained involvement as patient-teacher(s) in education, evaluation and curriculum development."]
<label>Participation (What will they be asked to do?):<br> [textarea participation 50x6] </label>
<label>Background (What skills, experience, health conditions are required to participate?):<br> [textarea background 50x6] </label>
<label>Commitment/Time (e.g. specify dates/times they are needed):<br> [textarea commitment 50x6] </label>
<label>Reimbursement (Please indicate if you are able to provide anything to the volunteers in return for their participation such as honoraria, refreshments, parking, etc.):<br> [textarea reimbursement 50x6] </label><br>
<label>Location:</label>
[checkbox location free_text use_label_element "UBC, Vancouver Campus" "Diamond Health Care Centre" "Vancouver General Hospital" "Other:"]
<label>What information would you like applicants to provide to help you determine if they are a good fit?</label>
[checkbox fit-info free_text use_label_element "Health condition/diagnosis" "Any health or other issues that would require special accomodation" "Prior relevant experience" "Other:"]
<label>Deadline for volunteers to apply:<br> [date deadline min:2019-01-01] </label>
<br>[submit class:btn class:btn-primary]
</div>
Request for Volunteers form code:
<div class="container-fluid m-0">
<br>
<strong>Basic Information:</strong>
<div class="row">
<div class="col"><label>Name:<br> [text* cf-name] </label></div>
<div class="col"><label>Organization:<br> [text org] </label></div>
</div>
<div class="row">
<div class="col"><label>Phone Number:<br> [tel phone] </label></div>
<div class="col"><label>Email Address:<br> [email* email] </label></div>
</div>
<div class="row">
<div class="col"><label>Website Link:<br> [text website] </label></div>
</div>
<br>
<strong>Request Information:</strong>
<div class="row">
<div class="col"><label>Number of Volunteers needed:<br> [number num-vol min:1] </label></div>
</div>
<br><label>Participation (What will volunteers be asked to do?):<br> [textarea participation 50x6] </label>
<label>Background (What skills, or experience are required to volunteer?):<br> [textarea background 50x6] </label>
<label>Commitment/Time (Specify dates/times volunteers are needed):<br> [textarea commitment 50x6] </label>
<label>Reimbursement (Please indicate if you are able to provide anything to the volunteers in return for their participation such as honoraria, refreshments, parking, etc.):<br> [textarea reimbursement 50x6] </label><br>
<label>Location:</label>
[checkbox location free_text use_label_element "UBC, Vancouver Campus" "Diamond Health Care Centre" "Vancouver General Hospital" "Other:"]
<label>What information would you like applicants to provide to help you determine if they are a good fit?</label>
[checkbox fit-info free_text use_label_element "Any health or other issues that would require special accomodation" "Prior relevant experience" "Other:"]
<label>Deadline for volunteers to apply:<br> [date deadline min:2019-01-01] </label>
<br>[submit class:btn class:btn-primary]
</div>
General Inquiry form code:
<div class="container-fluid m-0">
<br>
<div class="row">
<div class="col"><label>Name:<br> [text* cf-name] </label></div>
<div class="col"><label>Phone Number:<br> [tel phone] </label></div>
</div>
<div class="row">
<div class="col"><label>Email Address:<br> [email* email] </label></div>
</div>
<br><label>Your inquiry:<br> [textarea* inquiry 50x6] </label>
<br>[submit class:btn class:btn-primary]
</div>
Patients in Education. Developed by the Code the Change Foundation.
General Documentation
- Browser Compatibility
- Shortcodes
- Navigation Menu
- Footer and Pre Footer
- Global Elements
- Custom Fields
Page Specific Documentation
- Homepage
- Members Page
- Engagements Page
- Contact Us Page