Hi @tarolinus,
Is there a way to set the datepicker visible all the time?
Without a Popup?
Not really. The date picker is a modal, so positioned off-screen and only brought into view when interacted with. You’d be hijacking a pretty specific user interaction, and it would likely take quite a bit of work to get it working the way you want.
Secondly, is it possible that I do not receive emails when I am on localhost?
It’s very likely. Unless you’ve set up an email server on your local server, no email will be sent. Email servers are not usually set up in local development.
Hey,
Thanks for your fast answer.
And how can I deactivate the popup with the calender view?
Thanks again
Hi @tarolinus,
If you’re familiar working with PHP code and WordPress’s hooks system, you can use a filter to prevent all of the JavaScript and CSS assets from loading:
https://github.com/NateWr/restaurant-reservations/blob/master/restaurant-reservations.php#L248-L278
If you just want to dequeue the date and time pickers, the following Gist shows another way to do that:
https://gist.github.com/NateWr/d228531e710e98d5db6f
You’ll probably then want to override the form fields. You can find more information about this and other developer tips in the documentation here:
http://doc.themeofthecrop.com/plugins/restaurant-reservations/developer/