davmerit
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] I would like to change dynamically the fieldForum: Plugins
In reply to: [Contact Form 7] Upload multiple fileIf I want to upload 5 file I need 5 upload file buttons?
Probably yes :)
Here is some of the code on one of my forms that has the user submit more than one file.
<fieldset> <legend><strong>Attachments</strong></legend> Note: all documents can be scanned and saved or typed and saved. <ol> <li><label>Copy of ACT scores document [file ACT_scores filetypes:gif|png|jpg|jpeg|pdf /]</label></li> <li><label>Copy of SAT scores document [file SAT_scores filetypes:gif|png|jpg|jpeg|pdf /]</label></li> <li><label>Copy of High School transcript [file HS_transcript filetypes:gif|png|jpg|jpeg|pdf /]</label></li> <li><label>Typed essay (length 1/2 page (min) to 1 page (max)) [file essay filetypes:doc|docx|pdf /]</label></li> <li><label>Two letters of recommendation</label> <ol> <li><label>Faculty member with knowledge of applicant's academic achievements [file letter_1 filetypes:doc|docx|pdf|txt /]</label></li> <li><label>Individual with knowledge of applicant's leadership qualities and potential [file letter_2 filetypes:doc|docx|pdf|txt /]</label></li> </ol> </li> <li><label>Photo of applicant in JROTC uniform [file photo filetypes:gif|png|jpg|jpeg|pdf /]</label></li> </ol> <hr align=left width=20%> Depending on attachment sizes, transmission could take a few minutes. Be patient. </fieldset>Forum: Plugins
In reply to: [Contact Form 7] Contact Form not going through to emailThough the plugin successfully sends millions of emails every day, there are a host of issues that can stop or delay emails on both the sending and receiving ends. It depends entirely on your local Server & WordPress configuration. You will need to investigate this issue for your particular local configuration.
See Contact Form 7 Email Issues. There is a link at the bottom of the page to a comprehensive and detailed article which covers many issues. Most people that work through this information appear to be able to resolve their email sending & receiving issues.
If you find you need more detailed advice, after reading and working through the above links, please include a link to your Contact Form 7 form plus all your input in the Form and Mail sections of the CF7 interface. This should allow others to understand your actual problem and offer a possible solution.
Forum: Plugins
In reply to: [Contact Form 7] Multiple form depending objectLooks like you are looking for Conditional Logic which is not available directly in the Contact Form 7 plugin.
This sort of conditional logic is not available directly in Contact Form 7. It can be done via custom programing but you would need to be rather skilled at WordPress development using PHP and/or jQuery.
Some of the premium Form plugins do offer some Conditional Logic including Gravity Forms and Ninja Forms.
Also see https://wordpress.org/support/topic/plugin-contact-form-7-this-is-how-to-showhide-fields-with-jqueryForum: Plugins
In reply to: [Contact Form 7] Change message are height just for one form.At Styling Contact Form 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.
If you find you need more detailed advice, after reading and working through the above links, please include a link to your Contact Form 7 form, so others here can examine your form in detail using Firebug or Chrome Dev Tools to understand the CSS used for your CF7 form elements and provide you with a possible solution.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 to MailChimp Plugin neededhttps://wordpress.org/plugins/contact-form-7-mailchimp-extension/ – could be of help
Forum: Plugins
In reply to: [Contact Form 7] Submit style works only on firefoxIt seems the dashed border works in Firefox. see http://prntscr.com/8p0g9g
Forum: Plugins
In reply to: [Contact Form 7] validation error message not show on bottom.Please include a link to your Contact Form 7 form so we can examine your form in detail using Firebug or Chrome Dev Tools to understand the CSS used for your CF7 form elements.
Forum: Plugins
In reply to: [Contact Form 7] Two columns@jenniferlcastro as per the Forum Welcome, please post your own topic. I would be watching out for your question to offer you a possible solution.
Forum: Plugins
In reply to: [Contact Form 7] checkboxesI requested for your form input because I need to understand what you are trying to do. That way I would be a good position to provide an accurate response to your problem.
Forum: Plugins
In reply to: [Contact Form 7] Change css inputfield if it is not filled inWhat message appears? Kindly provide more details to your question.
You may include a link to your Contact Form 7 form plus all your input in the Form and Mail sections of the CF7 interface. If others here are able to understand your actual problem, they may be able to offer a possible solution.Also 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.
Forum: Plugins
In reply to: [Contact Form 7] Two columnsSorry for the first reply, I think I miss-read the question – I believe you are looking to put your form fields in 2 vertical columns.
You could consider using Contact Form 7 Skins to style your Contact Form 7 Forms.
You can now use the add-on CF7 Skins Ready to make a 2 column contact form.
Forum: Plugins
In reply to: [Contact Form 7] Stopped working on 5.4 PHPThough the plugin successfully sends millions of emails every day, there are a host of issues that can stop or delay emails on both the sending and receiving ends. It depends entirely on your local Server & WordPress configuration. You will need to investigate this issue for your particular local configuration.
See Contact Form 7 Email Issues. There is a link at the bottom of the page to a comprehensive and detailed article which covers many issues. Most people that work through this information appear to be able to resolve their email sending & receiving issues.
Forum: Plugins
In reply to: [Contact Form 7] Failed to send your messageThough the plugin successfully sends millions of emails every day, there are a host of issues that can stop or delay emails on both the sending and receiving ends. It depends entirely on your local Server & WordPress configuration. You will need to investigate this issue for your particular local configuration.
See Contact Form 7 Email Issues. There is a link at the bottom of the page to a comprehensive and detailed article which covers many issues. Most people that work through this information appear to be able to resolve their email sending & receiving issues.
Forum: Plugins
In reply to: [Contact Form 7] Two columnsThis is due to CSS styling applied to standard HTML form elements within your current WordPress theme.
To 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.
I use Ordered List elements to display multiple fields on single line.
HTML:
<ol class="singleline"> <li> <label for="your-name">Your Name (required) </label> [text* your-name] </li> <li> <label for="your-email">Your Email (required) </label> [email* your-email] </li> </ol>Added to Form section of CF7 interface. <label> tags are added for improved accessability.
CSS:
.wpcf7-form .singleline ol { list-style: none; margin: 0; } .wpcf7-form .singleline li{ display: inline-block; margin-right: 10px; }