Jainil Nagar
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Send emails to different peopleHello @twistsdgmailcom
This only works with a drop-down menu(select) or radio button fields.
Forum: Plugins
In reply to: [Contact Form 7] Redirection after submission do not workHello @bmael77
Contact form 7 doesn’t provide this functionality. This functionality is provided by the Popup Maker plugin.
Here is the support forum for the Popup Maker plugin.
Hello @wordpressorg21
The recaptcha may be considering submission as spam. Check here.
You can try changing the threshold values as described in FAQ.
Hello @ujoshi333
You have invalid keys for the recaptcha. Please check you have added your domain for key restriction or not in Google.
This message is likely to appear when it considers submission as spam.
Forum: Plugins
In reply to: [Contact Form 7] Send emails to different peopleHello @twistsdgmailcom
Please check Selectable recipient with pipes
Forum: Plugins
In reply to: [Contact Form 7] Checkbox text selectionHello @mbuilders
Add the following CSS:
label input[type=checkbox], label input[type=radio] { height: 17px; width: 17px; cursor: pointer; display: inline-block; } .tb-contact-form-wrapper span.wpcf7-list-item-label { display: inline-block; font-weight: 400; line-height: 27px; font-size: 17px; color: #707070; padding-left: 5px; margin-bottom: 0px; }
Forum: Plugins
In reply to: [Contact Form 7] Checkbox text selectionHello @mbuilders
Yes you need to apply CSS for that.
Forum: Plugins
In reply to: [Contact Form 7] Comparing User input and redirectingHello @wjyeshealth
If you have added
skip_mail: on
in the form setting area then it will not send any emails.Regarding printing post values, you can print them using
print_r($formdata)
but you must have knowledge on how to use the network tab in the browser console to check the output.Forum: Plugins
In reply to: [Contact Form 7] How to add disabled attr to submit btn?Hello @anthonygk1001
Are you using any caching plugin or any other optimization services?
Looks like CF7 Javascript file is not loaded on your site which is why Ajax submission and acceptance checkbox is not working.
Forum: Plugins
In reply to: [Contact Form 7] Checkbox text selectionHello @mbuilders
You need to use the
use_label_element
option in the checkbox which will wrap checkbox and text with a<label>
tag. Check here.ex:
[checkbox Webinars use_label_element "Entrepreneurship" "Freelancing" "UI/UX Design" "WordPress"]
Forum: Plugins
In reply to: [Contact Form 7] Typing Text – WhiteHello @pyro2509
You need to change the color of the text of the input field when focused.
.scheme_light .wpcf7 input:focus { color: #000 !important; }
Forum: Plugins
In reply to: [Contact Form 7] contact form 7 problem for androidHello @drpeaz01
You are using elementskit which has following CSS which prevents this:
.ekit-wid-con .ekit-form form label span { pointer-events: none; }
So you need to move your input fields and select outside the
<label>
element.Check here for the plugin demo for Contact Form 7.
Forum: Plugins
In reply to: [Contact Form 7] Comparing User input and redirectingHello @wjyeshealth
Query:
You can Worpdress query here to fetch the data.Disable Email:
You can useskip_mail: on
to disable mail sending on a particular form in the additional setting area. Check here.Forum: Plugins
In reply to: [Contact Form 7] Page Loading Issues When Using RecaptchaHello @mangosago11
This will not cause any issues. You can ignore this.
Forum: Plugins
In reply to: [Contact Form 7] Comparing User input and redirectingHello @wjyeshealth
This hook runs after the successful form submission and mail sent. In the
$formdata
you will get the data submitted on the form.You can use that to compare the data fetched from the database. Based on the comparison you can redirect the user to a specific page using code.