Jainil Nagar
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Change Contact 7 submit button background colourNeed to apply the CSS. Please read the Styling contact form
input.wpcf7-submit:hover { background: #E82526; opacity: 0.8; }
- This reply was modified 1 year, 1 month ago by Jainil Nagar.
Forum: Plugins
In reply to: [Contact Form 7] Using CF7 to pass parameters in encoded URLHello @lisci29
on_sent_ok is deprecated. Check here.
Use
wpcf7mailsent
DOM event as mentioned in the above URL.Forum: Plugins
In reply to: [Contact Form 7] SMS Sendinblue not sending + Sendinblue pluginHello @123nadav
What content do you have in the Form tab panel?
Forum: Plugins
In reply to: [Contact Form 7] HTML_ID but not in shortcodeHello @psvos
Are you using any plugin/module to add the Contact Form 7 form to the page?
Forum: Plugins
In reply to: [Contact Form 7] required fields not workingHello @volpagirl
You need to add the select drop-down as the following:
[select* Enquiry-type first_as_label "--Please Select--" "Accounts" "Repeat Prescriptions" "Appointment" "General"]
[select* Please-direct-my-enquiry-to first_as_label "--Please Select--" "Accounts" "Reception" "Repeat Prescriptions" "Nurse - Gillian Gallacher" "Vet - Harvey" "Vet - Jamie" "Vet - Lindsay" "Vet - Sue" "Vet - Fiona" "Vet - Roz"]
Check the drop-down options here.
Forum: Plugins
In reply to: [Contact Form 7] Dropdown not workingHello @gazepisapostolos
You need to add the code after the
jQuery
is loaded on the page. Add it at the end of<head>
tag or in the footer file.Forum: Plugins
In reply to: [Contact Form 7] Dropdown not workingHello @gazepisapostolos
Yes, you need to add it to the script tag.
Forum: Plugins
In reply to: [Contact Form 7] Abort email, store in flamingoHello @jonleesmith
You can use the
skip_mail: on
available in the additional settings of the form.- This reply was modified 3 years ago by Jainil Nagar.
Forum: Plugins
In reply to: [Contact Form 7] Dropdown not workingHello @gazepisapostolos
This is not the issue related to the CF7 plugin. Your themes CSS/JS is conflicting with the select dropdown behavior.
You can add the following:
jQuery('.wpcf7-select').click(function(e){ e.preventDefault(); });
- This reply was modified 3 years ago by Jainil Nagar.
Forum: Plugins
In reply to: [Contact Form 7] Adding Javascript to the formHello @ssumant10
In your JS file where you are performing the crosscheck.
Forum: Plugins
In reply to: [Contact Form 7] Adding Javascript to the formHello @ssumant10
You can get count of no of images uploaded using following:
jQuery( 'input[name="Digisol-Vouchers-Image[]"' ).length;
Forum: Plugins
In reply to: [Contact Form 7] Contact form doesnt workHello @artmas
Change the first one to below:
.wpcf7-form.invalid .wpcf7-response-output { display: block !important; }
Forum: Plugins
In reply to: [Contact Form 7] Contact form doesnt workHello @artmas
The theme “Unicon” you are using must have this CSS applied. You need to override them in your child theme style.css.
.wpcf7-response-output { display: block !important; } .wpcf7 span.wpcf7-not-valid-tip, .wpcf7-validation-errors { display: block !important; }
Hello @a4jpcom
You can either write your custom code using the
wpcf7_mail_sent
hook or you can use the Post My CF7 Form plugin to store data in the post.You can refer to this article for the above plugin.
Forum: Plugins
In reply to: [Contact Form 7] Contact form doesnt workHello @artmas
The contact form on the above page is working properly. You have below CSS added in your CSS file that hides the validation and success messages.
.wpcf7-response-output { display: none; } .wpcf7 span.wpcf7-not-valid-tip, .wpcf7-validation-errors { display: none !important; }
Remove above CSS.