Andy
posted this on October 25, 2011 04:41 pm
We often get asked some questions about the Prospect Widget, so we decided to create this document to answer some of them:
They are added as "Clients" in your MINDBODY system. This means you can perform a client lookup and find them. Each time the Prospect Widget form is submitted, you will also receive a notification e-mail. The notification e-mail shows you the information that was submitted into the system as well as a couple other key pieces of information:
Not at the moment. Only the first name, last name and e-mail fields are mandatory right now. We may change that in a future widget release.
Human verification is also referred to as the CAPTCHA. We have done one better, we use a honeypot or reverse human verification system on our form to attempt to detect robots.
A honeypot is not the same thing as a CAPTCHA. In fact, it's the opposite. There is a hidden field that robots/spambots fill out that humans don't. If the field isn't filled out, then we know the submitter of the form is a human. It has all the benefits of a CAPTCHA, except that your clients don't have to try to fill in annoying mis-shapen letters.
Neither are perfect, but it has been working pretty well for our clients. You can read more about the philosophy behind honeypots here: http://en.wikipedia.org/wiki/Honeypot_(computing)
Yes. Those are controlled by the Referral Types field in your MINDBODY account. Any active referral types will show in the Prospect Widget.
Yes, you can add additional questions by adding Client Indexes in your MINDBODY account. Any Client Indexes marked as active and Show In Consumer Mode will show in the Prospect Widget. Also, any Client Index Values attached to those Client Indexes will show as results. These are all shown as "single select" questions in which a site visitor has to select an answer from a drop-down list.
Yes, well... kind of. There is an optional open-ended Comment field, and you can change the text on the question. So for instance, instead of "Comment", you can change the text to "Describe any physical limitations you may have" or anything you want. But there is only one Comment field, so choose wisely. Also, the Comment field does not get automatically added to your MINDBODY account, it is only e-mailed to you in the notification e-mail. So you may have to add it manually in your Contact Logs.
Yes, you can. You can hide any of the fields but the required fields. In order to do this, you will need to paste any of the following into your Custom CSS box in your Prospect Widget depending on which field(s) you want to hide:
div.healcode .home_phone { display: none } /* use this one to hide the phone number */ div.healcode .referred_by { display: none } /* use this to hide "How did you hear about us */ div.healcode .comment { display: none } /* use this to hide the comment field, even if you rename it */
Then to hide any of your Client Index fields use the following formula. Take the Client Index question, convert it all to lowercase, and replace any spaces or other special characters to underscores, thusly:
div.healcode .client_index_question_text { display: none }
We'll keep updating this document as we receive more questions!