• I’ve been searching for some solutions to make the contact us form work on a site that’s currently under development shirleystreasuresllc.com .
    I’ve tried a couple of things but not seeing results so I’m not sure what to do next. I’m new and need some assistance. Below is the code I’m working with:

    <p class="contact-text">We would love to hear from you! Please fill out the form below to contact us. We promise that we won't share your information with anyone.</p>
    
    <div class="contact-area"><form class="contact-form" action="" method="post"><input id="name" tabindex="1" 
    
    name="name" size="22" type="text" value="" placeholder="Name" />
    <input id="email" tabindex="2" name="email" size="22" type="text" value="" placeholder="Email" />
    <textarea id="message" tabindex="4" cols="39" name="message" rows="7" 
    
    placeholder="Message">Message</textarea><input id="sendto" name="sendto" type="hidden" value="YOUR 
    
    EMAIL HERE(Default Admin Email)" />
    <input id="submit" name="submit" type="button" value="Post" /></form></div>

    Thoughts? The code above is the original onetone code.
    Thank you

Viewing 6 replies - 1 through 6 (of 6 total)
  • Yes . I have the same issue !

    Thread Starter vsc247

    (@vsc247)

    I’m not sure of the issues that you’re having but this is the code that I used to make it work. When you get to value just put in the email address that you want the form to send to. Outside of this solution I’m not sure what assistance I can provide

    <p class="contact-text">We would love to hear from you.....</p>
    
    <div class="contact-area"><form class="contact-form" action="" method="post"><input id="name" tabindex="1" name="name" size="22" type="text" value="" placeholder="Name" />
    <input id="email" tabindex="2" name="email" size="22" type="text" value="" placeholder="Email" />
    <textarea id="message" tabindex="4" cols="39" name="message" rows="7" placeholder="Message">Message</textarea><input id="sendto" name="sendto" type="hidden" value="[email protected]" />
    <input id="submit" name="send" type="button" value="send" /></form></div>

    Hi vsc247,

    Did you use the above script for onetone theme ? Because I used your code and replaced my email Id but it did not work for me.

    Thread Starter vsc247

    (@vsc247)

    Yes, this is the code directly from the website I was working on and we weren’t having any issues.

    has this been figured out?
    I am having the exact problem

    Make sure you close the tag after your email address (the tag didn’t close on my default code), so for example:

    <input id="sendto" name="sendto" type="hidden" value="[email protected]" />

    That last bit – the ‘/>’ closing tag – is really important and must be included to ensure messages are sent correctly.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘onetone contact us not working’ is closed to new replies.