Error installing Contact Form 7 [closed]
You probably need to setup smtp for it to work. Your host probably has disabled the php mail function try this plugin http://wordpress.org/extend/plugins/wp-mail-smtp/
You probably need to setup smtp for it to work. Your host probably has disabled the php mail function try this plugin http://wordpress.org/extend/plugins/wp-mail-smtp/
This is actual mail server trouble, where email cannot be sent. This link will useful. http://angstrey.com/index.php/2009/04/22/how-to-send-e-mail-with-wordpress-from-godaddy-windows-hosting/
You can’t do that directly inside the CF7 plugin you need to modify the CSS. Add the following to your theme’s style.css file: .wpcf7-recaptcha > div { margin: 0 0 15px auto; } PLEASE BE NOTED: If you add the above code, it will take effect to all your recaptcha fields in every forms on … Read more
You could save your AJAX pain and go about this in a different way by placing a hidden field within your form in PHP. Method 1, with the aid of a plugin I generally use the Contact Form 7 Dynamic Text Extension plugin as an easy route to creating custom CF7 tags, which still needs … Read more
As far as I know, the feature you are trying to use is not meant to be used this way. It is in fact meant to give the submitter the option to upload a file that is send with his mail message. I don’t think such a feature is available for contact form 7
This is not tested, but should work. There is a + CSS selector that you can use in conjunction with HTML elements and CSS classes and ID’s. I’d suggest you do something similar to this to avoid all the hassle of figuring out a way to inject an ID into each radio button: /* selects … Read more
Contact form 7 is sending an unwanted autoresponse [closed]
search form results – dynamically adding email addresses to contact form 7 [closed]
You should create another Contact Form for any different language. You include the form with shortcode, so it’s pretty easy to duplicate a form, translate it to given language and then modify the shortcode.
Looking at submit() in WPCF7_Submission we see a call to remove_uploaded_files() which has no filter to stop it. So apparently what you are trying to do isn’t meant to be done by the author of CF7. So apart from getting the author to include a hook there the only way I see is that you … Read more