Hi @gibbysyns3,
Sorry for the delay in getting back to you. I meant to hit this on Friday but didn’t get to it.
Trouble is the page refresh may not (and on my first site does not) take the user to the area where that message is visible. They are just taken to the top of the page and left thinking ‘what happened, did it go through or not?’
You’ve got a couple of options for such circumstances. One option is to create a separate Page just for the booking form, with it prominently at the top. You can then use the shortcode [booking-form]
to add the form to whatever page you’d like, and it will submit to the Booking Page where the form is more prominent.
Alternatively, you can use this Gist to scroll to the booking form after the form has been successfully submitted. To use this little addon, click the Download link at the top, unpack the .php file, and upload it to your /wp-content/plugins/
directory. You can then activate it from the Plugins page in your WordPress admin area.
I am hoping I can use a custom field to add a notes section, and disable the default ‘add a note’ option. I need the notes to be automatically visible in the backend, and printable, not individually selectable as in the free version.
You should be able to view the message field in the backend by using the Columns button which appears above the bookings list. I see now, though, that you can make all the columns visible except the message field. That’s an oversight. I’ve filed an issue to fix that in a future version.
If you want to make the message field visible in the booking form by default, you can use the following CSS code:
body .rtb-booking-form .add-message {
display: none;
}
body .rtb-booking-form .message {
position: relative;
top: auto;
left: auto;
}
I would see the automated reminder email as a huge plus.
Sounds good. If you want to be made aware of future addon releases, you can sign up to my email newsletter:
https://themeofthecrop.com/about/mailing-list/
Exclusion dates. Be great to be able to apply a date range.
This is also on my todo list.
A graphical ‘time bar’ showing bookings on a time line to aid with table allocation would be fantastic.
This will probably be part of a more comprehensive table assignment/capacity management addon that I am planning to build.
Ditto SMS options.
I’d need to integrate with a third-party service here, and many of them are country-specific. Twillio is currently the leading contender, but in many cases I think it’s just as easy for people to use email-to-sms platforms to accomplish this.
Language options. I read your reply to an enquiry, or in faq, about being able to set language of the form, but the email response being in the language of the backend user. I am happy with a dual language response, but a multi language reply email would be better. We have bookings in at least 8 languages.
Because WordPress has no standard way for handling multi-lingual sites, it’s tough to provide an out-of-the-box solution for this that works across the board. There are lots of different multi-lingual plugins out there, and each handles things differently, so I’m hesitant to support just one of them. But this is on my radar.
-
This reply was modified 7 years, 7 months ago by NateWr.