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

buzztone on "[Plugin: Contact Form 7] Campaign Monitor Addon - failed to submit"


adblastbiz on "[Plugin: Contact Form 7] Contact form 7 conditional redirect"

$
0
0

sorry new poster here, I probably spammed a bit.. did not mean to, only excited I found a way to make this work and wanted to share.

zucci2 on "[Plugin: Contact Form 7] Autorespond with Mail 2 But Hide Email Address"

$
0
0

Hello!

I would like to know if it is possible to use Mail 2 as an auto responder but hide the email address from the recipient when it arrives in his/her inbox? When I set up Mail 2 using just a name in the "From" field, the auto response arrives from "Unknown Sender." Thank you for your help.

Michelle

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

tangcla on "[Plugin: Contact Form 7] "Failed to send your message" error - troubleshooting"

$
0
0

Hi,
I was wondering whether there's a way to enable debugging or to identify what is causing my form to fail.

I am getting the following error message with a red box:
Failed to send your message. Please try later or contact the administrator by another method.

I've tried to set the 'from' address as my own address, and tried to use WP-Mail-SMTP plugin to enable SMTP - but neither of these options work.

Is there any way of enable debugging to see why the error occurs?

My contact page is http://www.tangcla.com/contact-me/

Thanks in advance.

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

tangcla on "[Plugin: Contact Form 7] "Failed to send your message" error - troubleshooting"

$
0
0

By the way - it's a 'fail' error, not a 'spam' error (I've changed the comment to identify between the two errors).

tangcla on "[Plugin: Contact Form 7] "Failed to send your message" error - troubleshooting"

$
0
0

OK - no idea what I did, but it seems to work now.

mrjayviper on "[Plugin: Contact Form 7] I cannot save changes on new and existing form"

$
0
0

Hello. my work just installed wordpress for one of the websites we just inherited. I've checked the dashboard and we are using 3.9.1. I am also using the latest version of Contact Form 7 (http://downloads.wordpress.org/plugin/contact-form-7.3.9.zip).

I tried creating a new form and saving it doesn't do anything. I tried editing an existing form and same results. I made a copy of an existing form and edited the copy and it still doesn't work.

Any ideas what could be wrong? Thanks a lot

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

carrion215 on "[Plugin: Contact Form 7] getting customer emails from wordpress@pcp..."

$
0
0

OK I'll try to clarify. I had my "contact us" page set up with contact form 7, I had a customer who filled it out and sent me a message but when I got an email I got the potential customer's message but the user name and phone number were not there. Instead the email was from work@p3plcpnl0279.prod.phx3.secureserver.net so i never got to see the users email address or phone number due to some glitch with the plugin. I've read that a few people were having this problem. My question is, is there any way to retrieve the information I need to contact this person? Is their email or phone number somewhere within the plugin since they put it in (as it was required) Thanks


queenofsavings on "[Plugin: Contact Form 7] White page after upgrade to 3.9"

mrjayviper on "[Plugin: Contact Form 7] I cannot save changes on new and existing form"

$
0
0

I've tried editing/creating under OSX and Windows 7.

Takayuki Miyoshi on "[Plugin: Contact Form 7] White page after upgrade to 3.9"

Takayuki Miyoshi on "[Plugin: Contact Form 7] I cannot save changes on new and existing form"

$
0
0

What other plugins and theme do you use?

Michael Simpson on "[Plugin: Contact Form 7] 3.9 Breaks CFDB Plugin"

$
0
0

I'm the author of CFDB which captures CF7 form submissions and saves them to the DB.

The plugin listens to the wpcf7_before_send_mail hook and pulls the form submission data from the object passed in ($object->posted_data) but "posted_data" no longer appears. The passed in object does have the form definition information, but has none of the form submission data.

Anyone else relying on wpcf7_before_send_mail to do something with with the data will also have this problem.

Please advise on how data can be collected in version 3.9. Many sites are rely on both these plugins.

Thank you.

mrjayviper on "[Plugin: Contact Form 7] I cannot save changes on new and existing form"

$
0
0

I was using a custom theme. I reverted back to the default one and now it's working. That's a lot! :)

dqh on "[Plugin: Contact Form 7] Set the repicipient depending on one input value"


Takayuki Miyoshi on "[Plugin: Contact Form 7] 3.9 Breaks CFDB Plugin"

$
0
0

Hi Michael,

Use this instead:

$submission = WPCF7_Submission::get_instance();

if ( $submission ) {
	$posted_data = $submission->get_posted_data();
}

Rene Hermenau on "[Plugin: Contact Form 7] 3.9 Breaks CFDB Plugin"

$
0
0

Rename the zip folder into contact-form-7.zip. Does this work? Maybe zip file has been corrupted due download?

Michael Simpson on "[Plugin: Contact Form 7] 3.9 Breaks CFDB Plugin"

$
0
0

Some code that might help for backward compatibility:
1. Take your old function hooked to wpcf7_before_send_mail, say it was called "hook", and rename it to something else, say "hook1"
2. Create a new version of "hook" that changes the data back to what it was before, then passes it to the original (now renamed) hook1:

function hook() { // change to your function name
  $submission = WPCF7_Submission::get_instance();
  if ($submission) {
    $data = array();
    $data['title'] = $cf7->title();
    $data['posted_data'] = $submission->get_posted_data();
    $data['uploaded_files'] = $submission->uploaded_files();
    $obj = (object) $data;
    hook1($obj); // call the original function (now renamed)
  }
  return true;
}

timrussell on "[Plugin: Contact Form 7] using wpcf7_before_send_mail action"

$
0
0

The action wpcf7_before_send_mail passes the current_form object to the action function. With the latest update, the current_form object has changed, its missing the posted_data property, has this changed to something else or has this been removed?

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

Pete on "[Plugin: Contact Form 7] My plugin using wpcf7_before_send_mail isn't working"

$
0
0

I use a basic plugin with the function below. What can I change to capture the object and update the object?

I understand i'll have to set the properties as shown on this page http://contactform7.com/2014/07/02/contact-form-7-39-beta/

But this function isn't firing at all. Would really appreciate some help, thanks

function wpcf7_process (&$WPCF7_ContactForm) {

   $fullname = $WPCF7_ContactForm->posted_data['your-name'];
   $email = $WPCF7_ContactForm->posted_data['your-email'];
   $phone = $WPCF7_ContactForm->posted_data['phone'];

   (.......other code......)

	$WPCF7_ContactForm->mail['body'] .= "=================";
	$WPCF7_ContactForm->mail['body'] .= "\r\n";

	$WPCF7_ContactForm->mail['body'] .= 'HTTP_REFERER: '.$_SERVER['HTTP_REFERER'];
	$WPCF7_ContactForm->mail['body'] .= "\r\n";

}
add_action("wpcf7_before_send_mail", "wpcf7_process");

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

Viewing all 49143 articles
Browse latest View live


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