LESIMOON
Forum Replies Created
-
in the “email” tab, does the e-mail address in the “from” field is the same as your domain name?
Check this link, 1st answer
Forum: Plugins
In reply to: [Contact Form 7] CheckboxesAdd this in your css :
input[type='checkbox']{width: 20px}Forum: Plugins
In reply to: [Contact Form 7] No message "Your mail has been sent"http://www.grenoble-ensemble.fr/contact/?_wpcf7_is_ajax_call=1&_wpcf7=3406&_wpcf7_request_ver=1464705073354 Failed to load resource: the server responded with a status of 403 (Forbidden)I got this message in the console on your site. Might be linked.
Forum: Plugins
In reply to: [Contact Form 7] Color ButtonTry this in your cf7 form :
[submit class:SendBtnColor “SEND”]and add this in your css :
.SendBtnColor {background:#ff00ff}Forum: Plugins
In reply to: [Contact Form 7] configuration errorNot displaying at all or the form styling is bad?
If it’s about styling, it might be due due conflict with your theme .css files. (i’m just guessing at this point)
Forum: Plugins
In reply to: [Contact Form 7] configuration errorIt could be because the mail you entered is not the same as your domain.
Example: i’m pretty sure you entered [your-email], who is the user email (I will take user@mail.com for example).
The mail is sent with the user@mail.com but your domain name is YourDomain.com.
Different domain = syntax error.
Just try with wordpress@YourDomain.comForum: Plugins
In reply to: [Contact Form 7] Send email to multiple adressesThis can be caused by an error in the fields.
I had a similar problem with the mail(2).
First mail was sent but not the mail(2). The problem came from an error in the mail(1) field. Yes, mail 1, not mail(2).Happy to help.
Feel free to mark the thread as solved 😉I had this problem before.
I think the problem is caused by an error in your script/function.Forum: Plugins
In reply to: [Contact Form 7] email field validationYou might be editing the wrong form since the e-mail input name on your site is “cemail”
You should have another form with something like this : [email* cemail maxlength:15]
By the way, why do you have an email address in a hidden input?
Forum: Plugins
In reply to: [Contact Form 7] Executes wp tags in Text input?Take a look at this plugin
Forum: Plugins
In reply to: [Contact Form 7] Css problem – Can't apply css on inputI change the background color to every input without any problem.
Even if I did it with and #id instead of a .class, this shouldn’t be the problem.Maybe your theme inputs background color are forced.
Try with the !important setting..test{ background-color: green!important; }Forum: Plugins
In reply to: [Contact Form 7] Header Image PaddingIf your theme allows custom css, you can add this :
#header-image .contact-7{padding: 12.5px!important}Insert this in function.php in your theme repertory.
add_action( 'wpcf7_before_send_mail', 'DoThisBefore' ); require_once('/path/to/yourfile.php'); //if your script is in another page function DoThisBefore($cf7) { if ($cf7->id == 00){ //replace 00 by your form id $submission = WPCF7_Submission::get_instance(); if ( $submission ) { $posted_data = $submission->get_posted_data(); $email = $submission->get_posted_data('email-1'); $name = $submission->get_posted_data('name-1'); $phone = $submission->get_posted_data('phone-1');} YourFunction($email,$name,$phone);} }Replace email-1, name-1 & phone-1 by your cf7 values.
Replace the 00 by your cf7 ID.This should do the job.