vasili4
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Name and email field in one line@hannawp, I don’t know your setup, but it produces two fields in one line for me https://jsfiddle.net/vasili4/3kcLw7ua/
Some of your theme CSS can break it of courseForum: Plugins
In reply to: [Contact Form 7] Name and email field in one line@hannawp, just remove those.
It’s a HTML way to embed css without css file.
It’s better to move.wpcf7-form label{display:inline-block;}
to your css file of courseForum: Plugins
In reply to: [Contact Form 7] Name and email field in one lineOk, you’ll need some css also. Try this
<style type=”text/css”>
.wpcf7-form label{display:inline-block;}
</style><label > Your Name (required)
[text* your-name] </label><label> Your Email (required)
[email* your-email] </label>note that they will be in one line only if browser width allows it. On mobile phone, they will be one above another
Forum: Plugins
In reply to: [Contact Form 7] disallow space in required field@ngupta123, for your purpose I would use just plain js
<textarea onchange=”this.value=this.value.trim()”></textarea>
https://jsfiddle.net/vasili4/p4oLqk5n/1/
just add this onchange to text/textarea input tags of your form
note that it will also remove spaces before and after any entered text. That’s usually ok
Forum: Plugins
In reply to: [Contact Form 7] Need to add "enctype="multipart/form-data" action= "just follow your hushmail instructions. You don’t need this plugin for your purpose
Forum: Plugins
In reply to: [Contact Form 7] Name and email field in one line<label > Your Name (required)
[text* your-name] </label><label> Your Email (required)
[email* your-email] </label>Forum: Plugins
In reply to: [Contact Form 7] Notification emails – where to set up?the field is called “To”
https://contactform7.com/faq/#Nothing_shows_up_in_the_email_even_after_adding_a_tag_to_the_form
Did you create at least one form ?Forum: Plugins
In reply to: [Contact Form 7] not reciving emails!@andy_dorn, try this https://www.ads-software.com/support/topic/error-sending-message-still-not-resolved?replies=3#post-8795414
or just downgrade WP to 4.5.3 until 4.6.1 is releasedForum: Plugins
In reply to: [Contact Form 7] not reciving emails!@ahmetyo1, if you are able, try first to send a test email using just php mail function.
If that doesn’t work, tell your hosting provider you’re not able to send emails.Forum: Plugins
In reply to: [Contact Form 7] Using *select for custom email AND subject linewith javascript, you could set a hidden text field value to the selected option text, that is pretty simple.
I hope you realize your form is highly insecure, if you set a email recipient like this.
Forum: Plugins
In reply to: [Contact Form 7] Eloqua form integrationso you just added
<div>[recaptcha size:compact]</div>
to your existing form and expect the magic happen?
Forum: Plugins
In reply to: [Contact Form 7] disallow space in required field@ngupta123 , a space is not an empty field.
If you need a certain minimum length data from user, consider using minlengthForum: Plugins
In reply to: [Contact Form 7] not reciving emails!@ahmetyo1, first of all, contact your hosting provider. Sending mail is a feature, which you might just lack.
Forum: Plugins
In reply to: [Contact Form 7] Custom attributes into tagson your Form tab, can’t you just put a div with dir=auto ?
<div dir=”auto”>
[everything else… ]
</div>