virtueagency
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Native PHP Sessions] Pantheon, WP Native Sessions and BooklyAnd thank you for the quick follow up! ??
Forum: Plugins
In reply to: [WordPress Native PHP Sessions] Pantheon, WP Native Sessions and BooklyIt’s a membership site so to test, you will need user access. I can send that privately. Basically, the appointment booking process gets hung up after the first step. You can’t actually click “next” to select the date and time. How can I send you credentials privately to test?
Any updates on the possible cause of this issue?
Plugin is now up to date but the issue persists. Please help – thank you!
Will do.
Version 2.7
I read in the FAQs that the field name should be the API Name for field. Is this the case for web-to-lead forms as well? I still can’t get the form to publish all the fields on the SF side. It sends all of the text fields correctly except email and none of the hidden fields are getting posted correctly.
If I want to map to SF field name (without “sf_”) for the form, where do I put it in the form editor?
Example:
From SF html code (hidden)
ID= “lead_status”
name = “inquiryStatus”
value=”new”Where would each one go in the form editor?
field =
label=
value=
options=Thank you for your quick responses ?? I did try the importer but it didn’t import the hidden fields from the code above, only the text fields.
I’ll set up the debug field now for further testing.
Does it look like I’m mapping the fields correctly? In the code, it has “ID”, “Name”, and “Value” whereas in the plugin form editor it references “field”, “label” and “value”. I assume “ID” is the same as “field” and “name” is the same as “label”?
No lead at all. Below is the html for the form (according to SF)
<!-- ---------------------------------------------------------------------- --> <!-- NOTE: Please add the following <META> element to your page <HEAD>. --> <!-- If necessary, please modify the charset parameter to specify the --> <!-- character set of your HTML page. --> <!-- ---------------------------------------------------------------------- --> <META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8"> <!-- ---------------------------------------------------------------------- --> <!-- NOTE: Please add the following <FORM> element to your page. --> <!-- ---------------------------------------------------------------------- --> <form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="POST"> <input type=hidden name="oid" value="00D30000001FwmA"> <input type=hidden name="retURL" value="https://www.brainbalancecenters.com"> <!-- ---------------------------------------------------------------------- --> <!-- NOTE: These Hidden Default Values were added by Danny to let you know --> <!-- defaults from original form. Delete as necessary. --> <!-- ---------------------------------------------------------------------- --> <input type="hidden" id="inquiryDate" name="00N30000008WKMd" value=""> <input type="hidden" id="inquiryStatus" name="lead_status" value="New"> <input type="hidden" id="inquirySource" name="lead_source" value="Internet"> <input type="hidden" id="sourceDetail" name="00Na000000Amc11" value="BB Website"> <input type="hidden" id="inquirySourceName" name="00N300000092LT5" value="Franchise"> <input type="hidden" id="disposition" name="00Na000000AkD8W" value="Franchise Inquiry"> <input type="hidden" id="company" name="company" size="20" value="company"> <input type="hidden" id="inquirerName" maxlength="255" name="00N30000008Wz7o"> <input type="hidden" id="last_name" maxlength="80" name="last_name" size="20"> <input type="checkbox" style="display: none" id="isWebToLead" name="00Ne0000000aEdR" checked="true" value="1" /> <input type="hidden" id="recordType" name="recordType" value="012300000014QMO"> <!-- ---------------------------------------------------------------------- --> <!-- NOTE: These fields are optional debugging elements. Please uncomment --> <!-- these lines if you wish to test in debug mode. --> <!-- <input type="hidden" name="debug" value=1> --> <!-- <input type="hidden" name="debugEmail" --> <!-- value="[email protected]"> --> <!-- ---------------------------------------------------------------------- --> <label for="first_name">First Name</label><input id="first_name" maxlength="40" name="first_name" size="20" type="text" /><br> <label for="last_name">Last Name</label><input id="last_name" maxlength="80" name="last_name" size="20" type="text" /><br> <label for="email">Email</label><input id="email" maxlength="80" name="email" size="20" type="text" /><br> <label for="phone">Phone</label><input id="phone" maxlength="40" name="phone" size="20" type="text" /><br> Area of Interest:<input id="00Na000000Amc2E" maxlength="50" name="00Na000000Amc2E" size="20" type="text" /><br> <label for="description">Description</label><textarea name="description"></textarea><br> <input type="submit" name="submit"> </form>/