konsument
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Blocking days and date ranges out from datepickerI’m only asking for help here..
No. You′re asking for someone who is able to read your mind and do your job!
I′ve asked you to clarify your question and posted some links which should bring you in the right direction. But if you prefer complaining around instead of reaching the goal – have fun ??Forum: Plugins
In reply to: [Contact Form 7] Blocking days and date ranges out from datepickerYou′re welcome. Maybe you express yourself a little more clearly. “but I’m pretty green when it comes to that”. So you′ve never worked with jQuery?
Well..
How to Use jQuery UI Elements In a WordPress Plugin or Theme
jQuery Datepicker
How to Disable Dates in Jquery DatePicker – A Short GuideForum: Plugins
In reply to: [Contact Form 7] Emails linked to subjectswow. Do you people ever read the docs before posting questions?
Forum: Plugins
In reply to: [Contact Form 7] Blocking days and date ranges out from datepickerForum: Plugins
In reply to: [Contact Form 7] How do I disable specific dates in Contact Form 7Yeah, use jquerys datepicker. This solution should bring you in the right direction.
Forum: Plugins
In reply to: [Contact Form 7] No loading indicator after submit is pressedThe loading element is there but empty. Dont know why the loading image is missing. In this case you can easily use the container .ajax-loader and the .is-active class while the form validates:
div.wpcf7 .ajax-loader { display:block; width:50px; height:50px; background:red; opacity:0; transition: all 0.3s ease; } div.wpcf7 .ajax-loader.is-active { opacity:1; }
Forum: Plugins
In reply to: [Contact Form 7] Load Contact Form 7 CSS and JS files only on select pagesForum: Plugins
In reply to: [Contact Form 7] Check whether age is 18 + or notForum: Plugins
In reply to: [Contact Form 7] “E-mail” input span larger than the restYou′re Welcome. You should start reading the FAQ. Im sure you will find the answer there.
Forum: Plugins
In reply to: [WP FullCalendar] “more..”-Link PopoverHey. Sry for my late reply. Ive just used the pure fullcalendar.io and this solution without plugin
Forum: Plugins
In reply to: [Contact Form 7] “E-mail” input span larger than the reststyle.css Line 93
change
input[type=text] {box-sizing: border-box;-moz-box-sizing: border-box;/* -webkit-box-sizing: border-box; */}
to
input[type=text], input[type=email] {box-sizing: border-box;-moz-box-sizing: border-box;/* -webkit-box-sizing: border-box; */}
Cheers!
- This reply was modified 6 years, 12 months ago by konsument.
Forum: Plugins
In reply to: [Contact Form 7] attach files dynamically to Mail(2) possible?since I’m not a specialist either, you might get replies from others if you post a link to your form
Forum: Plugins
In reply to: [Contact Form 7] attach files dynamically to Mail(2) possible?Forum: Plugins
In reply to: [Contact Form 7] Dynamic recipient for contact form?and without ACF you could set a hidden field in CF7 and get and set the emailadress via jquery:
`$(‘#your-hidden-field’).val($(‘.single-contact-email a’).html());
maybe thats the easiest solution
Forum: Plugins
In reply to: [Contact Form 7] attach files dynamically to Mail(2) possible?- This reply was modified 6 years, 12 months ago by konsument.