Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter jabbett

    (@jabbett)

    @olumide22 — thank you for the suggestion! I tried the snippet, but it does not solve this issue.

    @wpmudevsupport15 — thank you for the update! Since this problem is impacting us now, and there is no timeline for a fix, I’ll try switching to a different form plugin for my website. (I have subscribed to your roadmap, though, in case alternatives don’t work out in the meantime.)

    When I click “Send,” I get a never-ending spinner. Using Firebug, I can see the AJAX request go out, and I can see a response come back with a CF7 failure message, but no message ever appears on the page. The AJAX response is:

    { "mailSent": 0, "into": "#wpcf7-f1-p13-o1", "captcha": null, "message": "Sorry, we couldn\'t send your message. Please try again, or contact us by e-mail or telephone." }

    I have a fresh install of WordPress 3. I am also running the plugins “No wpautop pages” and “WordPress for Twitter.”

    The CF7 HTML that gets generated on my contact page is:

    <div class="wpcf7" id="wpcf7-f1-p13-o1"><form action="/contact/#wpcf7-f1-p13-o1" method="post" class="wpcf7-form">
    <div style="display: none;">
    <input type="hidden" name="_wpcf7" value="1" />
    <input type="hidden" name="_wpcf7_version" value="2.2.1" />
    <input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f1-p13-o1" />
    
    </div>
    <div class="field">
    <label for="">Your Name</label><br />
    <span class="wpcf7-form-control-wrap your-name"><input type="text" name="your-name" value="" class="wpcf7-validates-as-required" size="40" /></span>
    </div>
    <div class="field">
    <label for="">Your Email (required)</label><br />
    <span class="wpcf7-form-control-wrap your-email"><input type="text" name="your-email" value="" class="wpcf7-validates-as-email wpcf7-validates-as-required" size="40" /></span>
    </div>
    <div class="field">
    <label for="">Your Message</label><br />
    <span class="wpcf7-form-control-wrap your-message"><textarea name="your-message" cols="40" rows="10"></textarea></span>
    </div>
    
    <p><input type="submit" value="Send" /> <img class="ajax-loader" style="visibility: hidden;" alt="ajax loader" src="https://www.beacon16.com/wp-content/plugins/contact-form-7/images/ajax-loader.gif" /></p>
    <div class="wpcf7-response-output wpcf7-display-none"></div></form></div>
    </div>

    Your question helped me figure out the problem on my own site.

    I was using a theme that had a doctype of <!DOCTYPE html> in its header.php file.

    I replaced that with the doctype I had been using in my mockups:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    It’s not strict, but the line-height started to work again anyhow.

    Thread Starter jabbett

    (@jabbett)

    I guess the site was down when I tried… thanks!

Viewing 4 replies - 1 through 4 (of 4 total)