Quantcast
Channel: WordPress.org Forums » [Contact Form 7] Support
Viewing all 49143 articles
Browse latest View live

John S. on "[Plugin: Contact Form 7] Plugin doesn't reactivate after update"

$
0
0

I had exactly the same problem. Fixed by completely removing the plugin and installing it again.


MartinSmuts on "[Plugin: Contact Form 7] Contact form 7 validation problem"

$
0
0

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

https://wordpress.org/plugins/contact-form-7/

justadorbs on "[Plugin: Contact Form 7] Not receiving messages after sending successfully"

kristenide on "[Plugin: Contact Form 7] Failed to send message"

digibuze on "[Plugin: Contact Form 7] Problem after CF7 3.9 update"

$
0
0

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?"

$
0
0

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

https://wordpress.org/plugins/contact-form-7/

mudwoman on "[Plugin: Contact Form 7] Failed to send message"

$
0
0

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?"

$
0
0

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.

https://wordpress.org/plugins/contact-form-7/


CobaltCat on "[Plugin: Contact Form 7] 3.9 - email is sent but form hangs on spinning symbol"

$
0
0

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"

$
0
0

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"

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"

$
0
0

No, it's still available.

Can I check your site?

Takayuki Miyoshi on "[Plugin: Contact Form 7] My form doesn't appear"

Takayuki Miyoshi on "[Plugin: Contact Form 7] Invisible Submit Button"

$
0
0

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"

$
0
0

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"

$
0
0
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"

Takayuki Miyoshi on "[Plugin: Contact Form 7] Not receiving messages after sending successfully"

Viewing all 49143 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>