Ken Suarez
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Print form instead of send itHello, Good Day!
Web browser and mail client do support printing mails so this won’t be an issue not unless there is a specific functionality other than the printing of mails.Forum: Plugins
In reply to: [Contact Form 7] Changing Site URLHello,
This shouldn’t affect the form so no worries when updating the url.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7Hello, Good Day!
How about you set the item as a drop down option as well so in this case you’ll only have 3 column.
Example:
[select Product “Product 1” “Product 2” “Product 3” “Product 4” “Product 5” “Product 6” “Product 7” “Product 8” “Product 9” “Product 10”] |
[select Quantity “1” “2” “3” “4” “5” “6” “7” “8” “9” “10”]And in your Mail setup under contact form settings it is easy to layout so you would understand immediately the request.
Forum: Plugins
In reply to: [Contact Form 7] Name not working for FromHello, Good Day!
The FROM section should be the name of the person filling up the form be default, are you trying to set a fix name when you receive the mail? would it be fine if you attach a sample screenshot on what you receive just the FROM section.
Forum: Plugins
In reply to: [Contact Form 7] QueryHello, Good Day!
As far as we’ve tested there is no limit to number of forms that can be created in a single site as long as your hosting can still support it.
- This reply was modified 7 years, 8 months ago by Ken Suarez.
Forum: Plugins
In reply to: [Contact Form 7] Avoid enter key to submit formHello,
Found a link similar to this issue that might help. You can check the link below for the script use.
https://stackoverflow.com/questions/49954644/disable-contact-form-7-form-submit
Another option I can suggest is to setup an acceptance checkbox and make it required so that the data won’t be submitted not until they tick that option/checkbox.
Kindly reply if you have further question.
- This reply was modified 7 years, 8 months ago by Ken Suarez.
Forum: Plugins
In reply to: [Contact Form 7] Style GDPR Acceptance CheckboxHi, Good Day!
Are you looking to style the checkbox close to the radio options? Im afraid there is no direct selector that may refer to the checkbox unlike other fields and the radio button that you have for example however there is an option if you really need to style it. Try checking the link below for some guide and sample.
https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_checkbox
Forum: Plugins
In reply to: [Contact Form 7] Lost forms styling using conditional statementHello, Good Day!
Is there a way we can see the other style you have setup so we have something to compare. Also try wrapping up your form with a div in the backend part so that the styling set for the fields for example <div id=”basicform”>[shortcode]</div> will be carried over on the other form. In this case target fields will be close to generic and not specific to one form only. So you see what I mean I have a comparison for the style below.
instead:
#wpcf7-f273-p58-o1 input, #wpcf7-f273-p58-o1 textareayou can have it as:
#basicform .wpcf7-form input, #basicform .wpcf7-form textareaIf you have more questions or clarifications don’t hesitate to reply on this thread.
- This reply was modified 7 years, 8 months ago by Ken Suarez.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 constant contact integrationHello, Good Day!
Apology as of the moment I’m afraid there is no extension that somehow works the same way as with Mailchimp integration. It is technically possible to connect the two but right now this has to be done manually [coding].
Forum: Plugins
In reply to: [Contact Form 7] Clear all fields after submitHello, Good Day!
By default Contact Form 7 reset all fields after submission, is there a site where we can check the issue? Try deactivating other plugins as well and try submitting again if that works.
Forum: Plugins
In reply to: [Contact Form 7] Style e-mails Contact FormsHello, Good Day!
Contact Form 7 gives you 2 option in sending out the information it can be via plain text or html. If for example you need a styled email sent you can setup a body like the one below, in our example we assume that you have fields for name, email, and a body.
<html>
<head>
</head>
<body>
<div class=”emailbody”>
<h3>Name</h3>: [your-name]<br />
<h3>Email</h3>: [your-email]<br />
<h3>Message</h3>: [your-message]<br />
</div>
</body>
</html>Make sure that on the form settings on the admin area you have tick the option for “Use HTML content type” for your layout to work.
The code above is just a sample and you can style it with css with the code added on the head part. If you have other questions don’t hesitate to reply on the thread.
Have a great day ahead!
- This reply was modified 7 years, 8 months ago by Ken Suarez.