Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Alex Mansfield

    (@alexmansfield)

    Can you please post the code you’re using for the contact form? That way I can take a look and try to figure out what might be causing the issue. Thanks!

    Thread Starter JlynA

    (@jlyna)

    `<div style=”width:500px; border:3px solid #AA0000; background-color:#FFFFCC; padding:10px;”>
    <form method=”post” action=”http://www.successconnections.com/contact-backup/locate_contact.php”&#8221; name=”form1″>
    <table width=”500px” border=”0″ cellspacing=”0″ cellpadding=”0″>
    <tr>
    <td width=”22%” valign=”middle”><p align=”right”><strong>Your Name:</strong></p></td>
    <td width=”78%” valign=”middle”><input name=”Name” type=”text” id=”Name” size=”25″ /></td>
    </tr>
    <tr>
    <td valign=”middle”><p align=”right”><strong>Your E-Mail:</strong></p></td>
    <td valign=”middle”><input name=”Email” type=”text” id=”Name” size=”25″ /></td>
    </tr>
    <tr>
    <td valign=”middle”><div align=”right”>
    <p><strong>Telephone:</strong></p>
    </div></td>
    <td valign=”middle”><input name=”Phone” type=”text” id=”Name” size=”25″ /></td>
    </tr>
    <tr>
    <td valign=”middle”><p align=”right”><strong>Department:</strong></p></td>
    <td valign=”top”><p class=”bodytext”>
    <input type=”radio” name=”Dept” value=”j.mari@contemporaryva.com”/>
    Main Office – General Questions
    <input type=”radio” name=”Dept” value=”j.mari@contemporaryva.com”/>
    Coaching Programs
    <input type=”radio” name=”Dept” value=”j.mari@contemporaryva.com”/>
    Success Connections Forum
    <input type=”radio” name=”Dept” value=”j.mari@contemporaryva.com”/>
    Success Connections Store
    <input type=”radio” name=”Dept” value=”j.mari@contemporaryva.com”/>
    Webmaster
    <input type=”radio” name=”Dept” value=”j.mari@contemporaryva.com”/>
    Affiliate Programs </p></td>
    </tr>
    <tr>
    <td valign=”middle”><p align=”right”><strong>Subject:</strong></p></td>
    <td valign=”middle”><input name=”Subject” type=”text” id=”Name” size=”35″ /></td>
    </tr>
    <tr>
    <td valign=”middle”><p align=”right”><strong>Message:</strong></p></td>
    <td valign=”top”><textarea name=”Message” rows=”10″ cols=”30″></textarea></td>
    </tr>
    <tr>
    <td colspan=”2″ valign=”middle” align=”center”>
    <script type=”text/javascript”
    src=”http://www.google.com/recaptcha/api/challenge?k=6LeHoe8SAAAAAMYNE53MsOP1FvjqP98x4bHFveBW”&gt;
    </script>
    <noscript>
    <iframe src=”http://www.google.com/recaptcha/api/noscript?k=6LeHoe8SAAAAAMYNE53MsOP1FvjqP98x4bHFveBW&#8221;
    height=”300″ width=”500″ frameborder=”0″></iframe>
    <textarea name=”recaptcha_challenge_field” rows=”3″ cols=”40″>
    </textarea>
    <input type=”hidden” name=”recaptcha_response_field”
    value=”manual_challenge”>
    </noscript>
    </td>
    </tr>
    <tr>
    <td colspan=”2″ valign=”middle” align=”center”><input name=”submit” type=”submit” value=”Contact Us Now!” />
     
    <input type=”reset” value=”Clear Message and Start Over” name=”RESET” /></td>
    </tr>
    </table>
    </form>
    </div>

    Plugin Author Alex Mansfield

    (@alexmansfield)

    I see that the form is being submitted to http://www.successconnections.com. Can you see the form submission there? That is, can you log into your account on that website, and see the information from the submitted forms?

    Thread Starter JlynA

    (@jlyna)

    no, the form redirects to the successconnections.com thank you page. I need it to do that and also email me the answers, the “j.mari@contemporaryva.com”.

    Plugin Author Alex Mansfield

    (@alexmansfield)

    The way that HTML forms like the one you’re using work, you can only specify one place for the information to go. This is done using the “action” property of the form element, as you can see here:

    <form method="post" action="http://www.successconnections.com/contact-backup/locate_contact.php"" name="form1">

    You’ll notice that according to the action property, when the form is submitted, the information goes to http://www.successconnections.com/contact-backup/locate_contact.php

    From there, the successconnections.com handles the data. If you want them to send you the information as an email, you’ll have to talk with them to see if their system allows that.

    If it doesn’t, you would need to write a bit of custom code to either submit the form to your own website, then send yourself an email, and then forward the information to successconnections.com. Or you would need to intercept the form submission via Javascript, get all the form data and send email it to yourself via AJAX and then continue the standard form submission process. Both of those options are beyond the scope of what I can help you with here on the forums.

    I did notice, however, that you have two quatation marks in a row at the end of the action property (just before “name=…”):

    <form method="post" action="http://www.successconnections.com/contact-backup/locate_contact.php"" name="form1">

    There should only be one quotation mark there. I doubt that is causing your problems, but it’s probably worth fixing just in case.

    Thread Starter JlynA

    (@jlyna)

    Okay thank you!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Contact Form’ is closed to new replies.