davmerit
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Change font color of Contact 7 – Auto responsesIf you set the responder Mail to “Use HTML content type” then you can include regular HTML in the “Message body” in the mail section.
There you would be able to add your CSS and change the color of your font.
Forum: Plugins
In reply to: [Contact Form 7] upload & send multiple attachment through contact form 7Here is a sample code that that has the user submit more
than one file.FORM CODE:
[file ACT_scores filetypes:gif|png|jpg|jpeg|pdf /] [file SAT_scores filetypes:gif|png|jpg|jpeg|pdf /] [file HS_transcript filetypes:gif|png|jpg|jpeg|pdf /]Also remember to put the name in your mail section
MAIL SECTION CODE:
[ACT_scores] [SAT_scores] [HS_transcript]
I have inspected both forms in the links provided, it seems to me that the error message is CF7s own way of reporting an error with reCAPTCHA. Which is not quiet specific to easily draw the users attention on where the error lies.
But aside that the plugin works very well as expected, I am sure Takayuki would be gathering these little issues to solve them in coming updates
Forum: Plugins
In reply to: [Contact Form 7] Contact form not sending emailI guess Everything is correct, but it is not sending me email.
After I fill up the form I get the green box saying that email has been sent successfully.
The emails go to spam folder but (the 2 emails)
So your email are being seen as spam somewhere in the email process. This is usually due to email headers. Consider changing the From email address used.Emails can be considered spam for a whole host of reasons and get rejected at many points in the email process in addition to your spam folder.
See Contact Form 7 Email Issues – this links to a much more comprehensive article which also covers emails being considered spam.
See also Best Practice to Set Up Mail.
@solarcat As per the Forum Welcome, please post your own topic.
Forum: Plugins
In reply to: [Contact Form 7] Attached images aren't coming through Contact 7 formYou should consider adding the
[AttachFile]tag in your mail section.
see CF7 tags
Also see File Uploading and Attachment.Forum: Plugins
In reply to: [Contact Form 7] drop down "2" selectorSelectable Recipient with Pipes might offer a solution.
Forum: Plugins
In reply to: [Contact Form 7] Responsive fields is it possible?Use Ordered List elements to display multiple fields on single line.
HTML:
<ol class="singleline"> <li> <label for="cf7-phone">Phone</label> [text cf7-phone 15/]</li> <li> <label for="cf7-mobile">Mobile</label> [text cf7-mobile 15/]</li> </ol>Added to Form section of CF7 interface. Labels are added for improved accessability.
CSS:
.wpcf7-form .singleline ol { list-style: none; margin: 0; } .wpcf7-form .singleline li{ display: inline-block; float: left; margin-right: 10px; padding-right: 10px; }Add your CSS via Child Theme or use custom CSS plugin.
Also see Styling Contact Form for a general explanation of styling CF7 forms using CSS.
Forum: Plugins
In reply to: [Contact Form 7] Button SizeTo change the style of your CF7 forms you would need to edit the CSS style sheets used by your WordPress theme.
See Styling Contact Form for a general explanation of styling CF7 forms using CSS.
There is a link at the bottom of the page to a comprehensive and detailed article on Styling Contact Form 7 Forms. The article shows people, with suitable HTML & CSS skills, how to change the appearance of their Contact Form 7 Forms to meet their particular requirements.
You may do something like this
.wpcf7-submit { // add a width of your choice width: 200px; }Add your CSS via Child Theme or use custom CSS plugin.
However if you need the exact code to change the size of your button then you need to provide me with the link to your form
Forum: Plugins
In reply to: [Contact Form 7] inserting hyperlinks within a formYou may add an anchor link to open in a new tab as follows
<a target="_blank" href="http://www.itsamishmade.com/get-free-quote/" > your descriptive text goes here </a>The above code will look like shown below.
Forum: Plugins
In reply to: [Contact Form 7] Plugin Contact Form 7 no llegan los mensajesTranslated:
Good afternoon,
I have found that messages sent from Contact Form 7 plugin fail .
This is the link to the contact form : http://goo.gl/fOY1OP
In fact, I just updated the plugin and today I still receive them.
I do not know if I have something misconfigured but when I installed the plugin work properly . If anyone can bring something , I will be very grateful.
Thanks in advance!!!I would like to offer you help on this problem but first I may I know if you can read and understand English ?
Else nothing I will provide here would solve your problemForum: Plugins
In reply to: [Contact Form 7] Adding Headers to drop downWhat the best way to go about adding headers to my drop down selection?
You may achieve this by using HMTL5 <optgroup> as follows.
<select name="my-name"> <optgroup label="Fruit"> <option>Apple</option> <option>Orange</option> <option>Pear</option> </optgroup> <optgroup label="Veggies"> <option>Celery</option> <option>Carrots</option> <option>Beets</option> </optgroup> </select>note: you need to add a
nameattribute the<select>to be able to display the selected option in your email.
Lastly in the mail section, simply add the name attribute you used in the<select>like so,[my-name]Forum: Plugins
In reply to: [Contact Form 7] HTML5 optgroup in mail section.The
nameattribute was added to the<select>as follows:<select name="menu-587">Added the selected option to the mail section as follows
Selection: [menu-587]Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 Failed to send your message.I have inspected your form at http://www.alternatum.it/contact-us/ and I got your custom message “Thanks for contacting us! We will get in touch with you shortly.”
That is an indication that CF7 is sending the email. However if you are not receiving emails then they are probably being seen as spam somewhere in the email process. This is usually due to email headers (in particular the From email address used) or email content.
Emails can be considered spam for a whole host of reasons and get rejected at many points in the email process in addition to your spam folder.
See Contact Form 7 Email Issues – this links to a much more comprehensive article which also covers emails being considered spam.
See also Best Practice to Set Up Mail.
Forum: Plugins
In reply to: [Contact Form 7] Date CalendaContact Form 7 has some Datepicker support via the new HTML5 date input type (see date field) but this is currently only supported on some browsers – see HTML5 date
Contact Form 7 does provide jQuery UI-based fallback for the date and number input fields. See Contact from 7 support for HTML5 Date