I had exactly the same problem. Fixed by completely removing the plugin and installing it again.
John S. on "[Plugin: Contact Form 7] Plugin doesn't reactivate after update"
MartinSmuts on "[Plugin: Contact Form 7] Contact form 7 validation problem"
Hi All,
I am aware that the latest contact-form-7 (Cf7) version has been released. I also read that relevant plug-ins could possibly not work at the moment and therefore I have deactivated associated Cf7 plugins.
When my contact form is filled out and submitted on my website I receive a validation message "Your message was sent successfully. Thanks." I also receive this message in my email folder successfully.
The problem I have is when validation occurs to correct a field. e.g. when a user does not enter his email address correctly. Once the user corrects the email address and all validation is satisfied the validation message "Your message was sent successfully. Thanks." appears once again. However, I never receive an email once the form needs to be corrected and sent again.
Thanks in anticipation.
Regards,
Martin Smuts
justadorbs on "[Plugin: Contact Form 7] Not receiving messages after sending successfully"
I'm using WP 3.9.1 and CF7 3.9
I get the green box, message sent successfully, but no messages in my inbox.
help.
kristenide on "[Plugin: Contact Form 7] Failed to send message"
Hello,
I just updated the plugin, but before I updated it and even after I updated it, I am not able to have people send messages through the contact form. It was a recommended plugin to install to go with my theme, Venda, and I'm not using any other contact form plugins or add-ons. Please advise.
digibuze on "[Plugin: Contact Form 7] Problem after CF7 3.9 update"
That's what I did :)
I just hope it won't take too long to fix that.
cbunting on "[Plugin: Contact Form 7] Question if CF7 can actually do this?.. Posting to External DB?"
Hello,
I haven't messed with CF7 in awhile or wordpress really for that matter and I've gotten stuck on a couple of things..
I'm using a custom theme but I added the following code for my registration page (Connects to MSSQL) on an external site to submit to another database..
I use this filter to replace the cf7 form action:
add_filter('wpcf7_form_action_url', 'wpcf7_custom_form_action_url');
function wpcf7_custom_form_action_url($url)
{
global $post;
$id_to_change = 19;
if($post->ID === $id_to_change)
return '?add=1';
else
return $url;
}
And I also include the php/mssql database code into the functions.php also.. I've also tried putting the code into the header.php..
My problem is that, when I add the code to the header.php for mssql, the form, when submitted would appear to work.. And you get the thank you message if it passed the akismet check.. However, nothing is being created in the database.. When I add the code to the function.php file, submitting the form appears to hang.. The circle just keeps spinning.. But it creates the db account but then extra empty submissions..
My form code, below the connection info looks like this:
if($_GET['add'] == '1'){
$username = $_POST["acc-name"];
$pwd = $_POST["acc-passwd"];
The cf7 form has a post that submits to ?add=1
Seems like no matter what I try, I just can't get the form to actually create the account in the external database even though cf7 appears to work fine..
Am I going about this the wrong way?
Thanks,
Chris
mudwoman on "[Plugin: Contact Form 7] Failed to send message"
Same here, and on submit, I am suddenly getting "Error 1111: Sorry, your message failed. Please try later or go to our Contact Us page to let us know." I wasn't getting this over the weekend, and I updated the form prior to that. The information is submitting to the database, but the user is seeing this error message, and it does not redirect to our payments page. I'm at Zero Hour, and have no idea what to do. I changed NOTHING! Is this maybe a server issue? If so, what should I ask them to look at?
coolboard on "[Plugin: Contact Form 7] Is it possible to alter posted_data with 3.9?"
Hello,
I'm developing a plugin and in it I created a couple of drop-down menus to use with CF7 (so the user only needs to maintain the information in one place). It is working fine, it is basically like this:
<select>
<option value="id">text</option>
<select>
Before sending the email I save that data to the database.
As expected, in the email I get the ids instead of the text and I wanted to change the posted_data so the email displays the text.
I was checking the submission object and I saw a method to retrieve the posted data, but not to set it. Is it possible?
I know I can go the other way around (from text to id), but I wanted to do it the proper way.
CobaltCat on "[Plugin: Contact Form 7] 3.9 - email is sent but form hangs on spinning symbol"
I have a live example:
http://www.michaelpink.com/contact/
Fill & submit the form and the email gets sent, but the success message never shows and the spinning arrows just keep spinning. This started happening after the 3.9 update.
Is there a way to get an older version so I can get the forms working again? The site owner did the update without backing up the plugin.
CobaltCat on "[Plugin: Contact Form 7] 3.9 - email is sent but form hangs on spinning symbol"
Sorry, I couldn't wait. I downloaded an old version, so my forms are working again.
Pete on "[Plugin: Contact Form 7] using wpcf7_before_send_mail action"
@Timrussell, would you mind showing your code. I'm also using an action hook in a plugin which has completely stopped working. The example methods on CF7's site i'd be able to use, but my code has completely stopped working. I posted a few questions before yours in this forum with my sample code.
http://wordpress.org/support/topic/my-plugin-using-wpcf7_before_send_mail-isnt-working?replies=1
Takayuki Miyoshi on "[Plugin: Contact Form 7] Send an email to client after form completion"
Takayuki Miyoshi on "[Plugin: Contact Form 7] Acceptance function not working anymore"
No, it's still available.
Can I check your site?
Takayuki Miyoshi on "[Plugin: Contact Form 7] My form doesn't appear"
Try deactivating WPML.
Takayuki Miyoshi on "[Plugin: Contact Form 7] Invisible Submit Button"
Contact Form 7 isn't used in the site.
Takayuki Miyoshi on "[Plugin: Contact Form 7] Contact form won't send emails"
Sinklar on "[Plugin: Contact Form 7] Acceptance function not working anymore"
It's not a problem to let you check the site but it's not necessary, as you'd just see that CF7 scripts aren't loaded. I just noticed that.
Actually, I load the scripts on the contact page only, but it looks like wpcf7_enqueue_scripts
doesn't do its job anymore. As soon as I remove define('WPCF7_LOAD_JS', false);
from wp-config.php, it's working normally.
CF7 <3.9 didn't have that issue...
Takayuki Miyoshi on "[Plugin: Contact Form 7] My plugin using wpcf7_before_send_mail isn't working"
function wpcf7_process (&$WPCF7_ContactForm) {
You don't need '&
' before $WPCF7_ContactForm
.
$fullname = $WPCF7_ContactForm->posted_data['your-name'];
WPCF7_ContactForm object no longer has posted_data property. See this thread for alternative.
$WPCF7_ContactForm->mail['body'] .= "=================";
WPCF7_ContactForm object no longer has public mail property. See Contact Form 7 3.9 Beta.
Takayuki Miyoshi on "[Plugin: Contact Form 7] Contact form 7 validation problem"
How have you set up mail? Can I check the site?