Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Contact Form 7 plugin in a WordPress template. I created the form and the related CSS, so everything is working fine. I need to do the following, when I click the send button and I have a successful sent email. the form should disappear and shows "Sent!" instead of that. I need to know the code that I need to change. Please see the photo that shows what I like to do

enter image description here

share|improve this question

2 Answers

up vote 1 down vote accepted

In order to hide contact form 7 you have to add the following code, in the setting section of the contact form 7 you already generate it

on_sent_ok:  "document.getElementById('contactform').style.display = 'none';"

'contactform' is the id of the "div" that includes the tags of your contact form.

share|improve this answer

You'll want to look into the JQuery Post Method, as well as the Wordpress Codex on AJAX if you want to send the data without loading another page.

To have the form detect whether or not information has been sent without AJAX would require you to send the information to the same page via an empty action and fill the contents of your form with information conditional upon the existence of POST data. Example:

<form action="" method="POST">
    <?php
    if($_POST['submit'] === 'Send')
    {
        $to = 'your_email_here@admin.com';
        $subject = 'Mail Form Submission';
        wp_mail($to, $subject, $_POST['user_message']);
    ?>
    <h1>Sent!</h1>
    <?php
    else
    {
    ?>
    <label for="user_name">Name</label>
    <input type="text" name="user_name" />
    <label for="user_email">Email</label>
    <input type="text" name="user_email" />
    <label for="user_message">Message</label>
    <textarea name="user_message"></textarea>
    <input type="submit" name="submit" value="Send">
    <?php
    }
    ?>
</form>

Let me know if this helps.

share|improve this answer
Well, I'm using a contact form 7 plugin. So should I write that code in a specific file or what ? – HTML Man Jun 7 '12 at 13:41
This example was actually not for Contact Form 7, but rather just a very basic AJAX-less form to give you an idea on how forms work. Read the documentation I sent for information on how to integrate AJAX with Contact Form 7. – maiorano84 Jun 7 '12 at 14:02
The Contact Form 7 Website also has a lot of useful information. After looking into these things, feel free to update your question with what you've tried if you still need help. – maiorano84 Jun 7 '12 at 14:05
well to be honest... i do my best to solve that. but i could not. well, could you help me... i dont till this moment know which file should i look or change it's totally complicated ! – HTML Man Jun 9 '12 at 7:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.