LESIMOON
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Syntax error in additional headers and To: fieldMake sure [your-email] is an email field and not a text field. Also, make sure it is required.
[email* your-email]
I have exactly the same syntax but don’t have any problem.
Forum: Plugins
In reply to: [Contact Form 7] Radio Button ColourYou can follow this working example
Forum: Plugins
In reply to: [Contact Form 7] No color change<style>
.wpcf7-validation-errors {background: rgba(255,255,255, 0.5);}
</style>This adds a semi transparent white background.
You can change color or background as you want.Forum: Plugins
In reply to: [Contact Form 7] No color changeadd this in your form
<style>
.wpcf7-select{color:#000; background:#fff}
.wpcf7-not-valid-tip {color:#fff}
</style>Forum: Plugins
In reply to: [Contact Form 7] Why is there a black background behind my form?It comes from your theme, not the contact form.
<div class=”stripe stripe-style-full_width_content” style=”padding-top: 0px;padding-bottom: 0px;margin-top: 0px;margin-bottom: 0px;min-height: 0px;background-attachment: scroll;background-color: rgb(0, 0, 0);background-size: auto;background-position: center top;background-repeat: no-repeat;”>
Forum: Plugins
In reply to: [Contact Form 7] Responsive layout for Contact 7 plug in<style> ::-webkit-input-placeholder {color: #fff;} :-moz-placeholder {color: #fff;} ::-moz-placeholder {color: #fff;} :-ms-input-placeholder {color: #fff;} </style>Add this in your contact form
Forum: Plugins
In reply to: [Contact Form 7] Sender ("from") tag doesn't workAlmost have the same problem (but no answer 🙁)
Forum: Plugins
In reply to: [Contact Form 7] Conditional Mail TagsIf I understand, your form is working well but the problem appear in the mail sent?
Check “Exclude lines with blank mail-tags from output” box in the Mail section. It should fix the problem.
Forum: Plugins
In reply to: [Contact Form 7] Conditional Mail TagsForum: Plugins
In reply to: [Contact Form 7] Disable a checkbox if select anotherMaybe you can use radio button?
Forum: Plugins
In reply to: [Contact Form 7] What is the html required property ?Alright thank you.
I managed to “bypass” this validation with a script (see here). I think adding the add_filter() hook can also do the job.Forum: Plugins
In reply to: [Contact Form 7] Google Map Address change AvadaThere is nothing related to Contact Form 7. You should ask on the Avada support.
Forum: Plugins
In reply to: [Contact Form 7] Intending next line under radioboxAccording to the source code of your page, this style isn’t included.
Try adding it in your contact form :
<style>span.wpcf7-list-item{display:inline-flex;margin:0}</style>Forum: Plugins
In reply to: [Contact Form 7] What is the html required property ?I would love any answer 🙁
Forum: Plugins
In reply to: [Contact Form 7] Textarea clear on clickWhat Takayuki said. That’s why it consider “placeholder” as the name.
Try this :[textarea* InsertTextAreaNameHere placeholder "Сообщение"]